(float x1, float y1,
float x2, float y2,
float x3, float y3,
float x4, float y4)
| 3443 | |
| 3444 | |
| 3445 | public void bezier(float x1, float y1, |
| 3446 | float x2, float y2, |
| 3447 | float x3, float y3, |
| 3448 | float x4, float y4) { |
| 3449 | beginShape(); |
| 3450 | vertex(x1, y1); |
| 3451 | bezierVertex(x2, y2, x3, y3, x4, y4); |
| 3452 | endShape(); |
| 3453 | } |
| 3454 | |
| 3455 | /** |
| 3456 | * |
nothing calls this directly
no test coverage detected