Bitmap/Bézier curves/Cubic: Difference between revisions

Content added Content deleted
Line 1,082: Line 1,082:


=={{header|Processing}}==
=={{header|Processing}}==
<lang Prolog>
<lang Prolog>noFill();
noFill();
bezier(85, 20, 10, 10, 90, 90, 15, 80);
bezier(85, 20, 10, 10, 90, 90, 15, 80);
/*
/*
Line 1,089: Line 1,088:
Can also be drawn in 3D.
Can also be drawn in 3D.
bezier(x1, y1, z1, x2, y2, z2, x3, y3, z3, x4, y4, z4)
bezier(x1, y1, z1, x2, y2, z2, x3, y3, z3, x4, y4, z4)
*/
*/</lang>
</lang>


=={{header|PureBasic}}==
=={{header|PureBasic}}==