Modifier and Type | Field and Description |
---|---|
Point[] |
JBezier.bPoints |
Modifier and Type | Method and Description |
---|---|
Point[] |
JBezier.generateBezier()
Generates the bezier curve and stores the individual points into an array.The amount of points is determined by the number of iterations.
|
Point[] |
JBezier.update(Point... points)
Generates a new bézier based on the new points supplied (This takes changes of order into calculation).
|
Modifier and Type | Method and Description |
---|---|
Point[] |
JBezier.update(Point... points)
Generates a new bézier based on the new points supplied (This takes changes of order into calculation).
|
Constructor and Description |
---|
JBezier(BezierOrder order,
int iterations,
Point... points)
Initializes all important values for use with bézier curves
|
JBezier(int order,
int iterations,
Point... points)
Initializes all important values for use with bézier curves
|