SWF 函数
在线手册:中文 英文
PHP手册

swf_shapelineto

(PHP 4)

swf_shapelinetoDraw a line

说明

void swf_shapelineto ( float $x , float $y )

Draws a line to the x and y coordinates. The current position is then set to that point.

参数

x

x-coordinate of the target.

y

y-coordinate of the target.

返回值

没有返回值。


SWF 函数
在线手册:中文 英文
PHP手册
PHP手册 - N: Draw a line

用户评论:

mathe at bluemento dot de (15-Sep-2003 04:58)

I did make other experience with this function:

swf_startshape ($this->gButton);
  swf_addcolor(0,0,0,0);
  swf_shapelinesolid(1,0,0,0,5);
  swf_shapefillsolid($r,$g,$b,1);
  swf_shapemoveto(0,10);
  swf_shapelineto(60,10);
  swf_shapelineto(60,-5);
  swf_shapelineto(-35,-5);
  swf_shapelineto(-35,10);
swf_endshape($this->gButton);

Here, swf_shapelineto doesnt set the given values to the
current position. In case this would not build a rectangle -
but it does.