MCPcopy Index your code
hub / github.com/benfry/processing4 / bezier

Method bezier

core/src/processing/core/PGraphics.java:3445–3453  ·  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

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 *

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