SWFShape::drawLineTo

(PHP 5 <= 5.3.0, PECL ming SVN) Draws a line void SWFShape::drawLineTo ( float $x, float $y ) swfshape::setrightfill() draws a line (using the current line style, set by swfshape::setline()) from the current pen position to point (x,y) in the shape's coordinate space. Returns: No value is returned. This function is EXPERIMENTAL. The behaviour of this functi

SWFShape::drawLine

(PHP 5 <= 5.3.0, PECL ming SVN) Draws a line (relative) void SWFShape::drawLine ( float $dx, float $dy ) swfshape::drawline() draws a line (using the current line style set by swfshape::setline()) from the current pen position to displacement (dx,dy). Returns: No value is returned. This function is EXPERIMENTAL. The behaviour of this function, its name, and

SWFShape::drawGlyph

(PHP 5 <= 5.3.0, PECL ming SVN) Draws the first character in the given string into the shape using the glyph definition from the given font void SWFShape::drawGlyph ( SWFFont $font, string $character [, int $size ] ) Returns: No value is returned. This function is currently not documented; only its argument list is available.

SWFShape::drawCurveTo

(PHP 5 <= 5.3.0, PECL ming SVN) Draws a curve int SWFShape::drawCurveTo ( float $controlx, float $controly, float $anchorx, float $anchory [, float $targetx ], float $targety ) swfshape::drawcurveto() draws a quadratic curve (using the current line style, set by swfshape::setline()) from the current pen position to (anchorx,anchory) using (controlx,controly) as a control point. That is, head towards the control point, the

SWFShape::drawCurve

(PHP 5 <= 5.3.0, PECL ming SVN) Draws a curve (relative) int SWFShape::drawCurve ( float $controldx, float $controldy, float $anchordx, float $anchordy [, float $targetdx ], float $targetdy ) 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 i

SWFShape::drawCubicTo

(PHP 5 <= 5.3.0, PECL ming SVN) Draws a cubic bezier curve using the current position and the three given points as control points int SWFShape::drawCubicTo ( float $bx, float $by, float $cx, float $cy, float $dx, float $dy ) This function is currently not documented; only its argument list is available. S

SWFShape::drawCubic

(PHP 5 <= 5.3.0, PECL ming SVN) Draws a cubic bezier curve using the current position and the three given points as control points int SWFShape::drawCubic ( float $bx, float $by, float $cx, float $cy, float $dx, float $dy ) This function is currently not documented; only its argument list is available. See

SWFShape::drawCircle

(PHP 5 <= 5.3.0, PECL ming SVN) Draws a circle of radius r centered at the current location, in a counter-clockwise fashion void SWFShape::drawCircle ( float $r ) Returns: No value is returned. This function is currently not documented; only its argument list is available.

SWFShape::drawArc

(PHP 5 <= 5.3.0, PECL ming SVN) Draws an arc of radius r centered at the current location, from angle startAngle to angle endAngle measured clockwise from 12 o'clock void SWFShape::drawArc ( float $r, float $startAngle, float $endAngle ) Returns: No value is returned. This function is currently not documented; only its argument list is available.

SWFShape::__construct

(PHP 5 <= 5.3.0, PECL ming SVN) Creates a new shape object SWFShape::__construct ( void ) Created a new SWFShape object. This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notice in a future release of PHP. This function should be used at your own risk.