Forum und email

SWFShape->drawCurve()

(PHP 4 >= 4.0.5)

SWFShape->drawCurve() — Draws a curve (relative)

說明

SWFShape
int drawCurve ( int $controldx , int $controldy , int $anchordx , int $anchordy [, int $targetdx ], int $targetdy )
Warning

本函式是實驗性的。這個函式的行為、名稱、和關於此函式的任何其他文件在未來PHP的發行中可能會在不通知的情況下改變。 使用此函式需自行承擔風險。

swfshape->drawcurve() draws a quadratic curve (using the current line style,set by swfshape->setline()) from the current pen position to the relative position (anchorx ,anchory ) using relative control point (controlx ,controly ). That is, head towards the control point, then smoothly turn to the anchor point.

With 6 parameters, it draws a cubic bezier to point (x+targetdx , x+targetdy ) with control points (x+controldx , y+controldy ) and (x+anchordx , y+anchordy ).