Skip to content

Commit c0ff9eb

Browse files
authored
Update PGraphics.java
1 parent 2bd91c7 commit c0ff9eb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/src/processing/core/PGraphics.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3211,7 +3211,7 @@ public void sphere(float r) {
32113211
* @see PGraphics#bezierVertex(float, float, float, float, float, float)
32123212
* @see PGraphics#curvePoint(float, float, float, float, float)
32133213
*/
3214-
float bezierPoint (float a, float b, float c, float d, float t) {
3214+
public float bezierPoint (float a, float b, float c, float d, float t) {
32153215
float t1 = t-1.0f;
32163216
return t * ( 3*t1*(b*t1-c*t) + d*t*t ) - a*t1*t1*t1;
32173217
}

0 commit comments

Comments
 (0)