Skip to content

Commit 19657b6

Browse files
committed
Reference change to PApplet
1 parent 2811c75 commit 19657b6

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

core/src/processing/core/PApplet.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12573,17 +12573,17 @@ public void bezier(float x1, float y1, float z1,
1257312573
* ( begin auto-generated from curvePoint.xml )
1257412574
*
1257512575
* Evalutes the curve at point t for points a, b, c, d. The parameter t
12576-
* varies between 0 and 1, a and d are points on the curve, and b and c are
12577-
* the control points. This can be done once with the x coordinates and a
12576+
* varies between 0 and 1, a and d are the control points, and b and c are
12577+
* the points on the curve. This can be done once with the x coordinates and a
1257812578
* second time with the y coordinates to get the location of a curve at t.
1257912579
*
1258012580
* ( end auto-generated )
1258112581
*
1258212582
* @webref shape:curves
12583-
* @param a coordinate of first point on the curve
12584-
* @param b coordinate of second point on the curve
12585-
* @param c coordinate of third point on the curve
12586-
* @param d coordinate of fourth point on the curve
12583+
* @param a coordinate of first control point
12584+
* @param b coordinate of first point on the curve
12585+
* @param c coordinate of second point on the curve
12586+
* @param d coordinate of second control point
1258712587
* @param t value between 0 and 1
1258812588
* @see PGraphics#curve(float, float, float, float, float, float, float, float, float, float, float, float)
1258912589
* @see PGraphics#curveVertex(float, float)

0 commit comments

Comments
 (0)