MCPcopy Index your code
hub / github.com/processing/processing / bezier

Method bezier

core/src/processing/core/PGraphics.java:3342–3350  ·  view source on GitHub ↗
(float x1, float y1,
                     float x2, float y2,
                     float x3, float y3,
                     float x4, float y4)

Source from the content-addressed store, hash-verified

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 )

Callers

nothing calls this directly

Calls 4

beginShapeMethod · 0.95
vertexMethod · 0.95
bezierVertexMethod · 0.95
endShapeMethod · 0.95

Tested by

no test coverage detected