SWFShape::drawCubic

(PHP 5 < 5.3.0, PECL ming SVN)

SWFShape::drawCubicDraws a cubic bezier curve using the current position and the three given points as control points

Opis

SWFShape::drawCubic ( float $bx , float $by , float $cx , float $cy , float $dx , float $dy ) : int
Ostrzeżenie

Ta funkcja jest obecnie nieudokumentowana, dostępna jest jedynie lista jej argumentów.

Zobacz też:

  • SWFShape::drawCubicTo() - Draws a cubic bezier curve using the current position and the three given points as control points

add a note add a note

User Contributed Notes 1 note

up
-3
Anonymous
15 years ago
This function creates a simple bow in an Cartesian coordinate system using three points.

$bx: x-coordinate of starting point
$by: y-coordinate of starting point

$cx: x-coordinate of tanget
$cy: y-coordinate of tanget

$dx: x-coordinate of ending point
$dy: y-coordinate of ending point
To Top