(float x1, float y1,
float x2, float y2,
float x3, float y3,
float x4, float y4)
| 3340 | |
| 3341 | |
| 3342 | public void bezier(float x1, float y1, |
| 3343 | float x2, float y2, |
| 3344 | float x3, float y3, |
| 3345 | float x4, float y4) { |
| 3346 | beginShape(); |
| 3347 | vertex(x1, y1); |
| 3348 | bezierVertex(x2, y2, x3, y3, x4, y4); |
| 3349 | endShape(); |
| 3350 | } |
| 3351 | |
| 3352 | /** |
| 3353 | * ( begin auto-generated from bezier.xml ) |
nothing calls this directly
no test coverage detected