mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
curvePoint() reference update
This commit is contained in:
@@ -3424,17 +3424,17 @@ public class PGraphics extends PImage implements PConstants {
|
||||
* ( begin auto-generated from curvePoint.xml )
|
||||
*
|
||||
* Evalutes the curve at point t for points a, b, c, d. The parameter t
|
||||
* varies between 0 and 1, a and d are points on the curve, and b and c are
|
||||
* the control points. This can be done once with the x coordinates and a
|
||||
* varies between 0 and 1, a and d are the control points, and b and c are
|
||||
* the points on the curve. This can be done once with the x coordinates and a
|
||||
* second time with the y coordinates to get the location of a curve at t.
|
||||
*
|
||||
* ( end auto-generated )
|
||||
*
|
||||
* @webref shape:curves
|
||||
* @param a coordinate of first point on the curve
|
||||
* @param b coordinate of second point on the curve
|
||||
* @param c coordinate of third point on the curve
|
||||
* @param d coordinate of fourth point on the curve
|
||||
* @param a coordinate of first control point
|
||||
* @param b coordinate of first point on the curve
|
||||
* @param c coordinate of second point on the curve
|
||||
* @param d coordinate of second control point
|
||||
* @param t value between 0 and 1
|
||||
* @see PGraphics#curve(float, float, float, float, float, float, float, float, float, float, float, float)
|
||||
* @see PGraphics#curveVertex(float, float)
|
||||
|
||||
Reference in New Issue
Block a user