Ming Vertical Bezier Codes
Enter your parameters and then select and copy codes.
positive width curves right, negative width curves left
Thickness:
Red:
Green:
Blue:
Alpha:
Width:
Height:
then copy
$myMovie = new SWFMovie(); $myMovie->setBackground(0x00, 0x00, 0x00); $myMovie->setDimension(450, 450); $Vbezier = new SWFShape(); $Vbezier->setLine(0,0,0,0,0); $Vbezier->movePenTo(0,0); $Vbezier->drawCurveTo(0,0,0,0,0,0); $myMovie->add($Vbezier); /* //GENERAL CODES FOR VERTICAL BAZIER CURVES $Hbezier2 = new SWFShape(); $Hbezier2->setLine(10,255,255,255,255); $Hbezier2->movePenTo(X1,Y1); $Hbezier2->drawCurveTo(X1,Y1,(+/- Curve HT),[(CENTER PIXEL BETWEEN Y1 AND Y2)+(Y1)],X1,Y2); $myMovie->add($Hbezier2); */ header('Content-type: application/x-shockwave-flash'); $myMovie->output(); ?>
Back to Functions