bezierVertex()
Shape / VertexDescription
Specifies vertex coordinates for bezier curves inside beginShape()/endShape().
Syntax
void bezierVertex(float cx1, float cy1, float cx2, float cy2, float x, float y)
Parameters
| Name | Type | Description |
|---|---|---|
| cx1 | float | x of first control point |
| cy1 | float | y of first control point |
| cx2 | float | x of second control point |
| cy2 | float | y of second control point |
| x | float | x of anchor point |
| y | float | y of anchor point |
Returns
voidRelated
Under the Hood
Implementation in Processing.h / Processing.cpp:
Loading...