Basically, a cubic Bezier curve is created with start point (0,0) and endpoint (1,1). The other two control points (px1, py1) and (px2, py2) are given by the user, where px1, py1, px1, and px2 are all in the range [0,1]. A property of this specially constrained Bezier curve is that it is strictly monotonically increasing in both X and Y with t in range [0,1].
The interpolator works by giving it a value for X. It then finds what parameter t would generate this X value for the curve. Then this t parameter is applied to the curve to solve for Y. As X increases from 0 to 1, t also increases from 0 to 1, and correspondingly Y increases from 0 to 1. The X-to-Y mapping is not a function of path/curve length.
Modifier and Type | Field and Description |
---|---|
private final boolean | isCurveLinear
Do the input control points form a line with (0,0) and (1,1), i.e., x1 == y1 and x2 == y2 -- if so, then all x(t) == y(t) for the curve. |
private static final double | SAMPLE_INCREMENT
Difference in t used to calculate each of the xSamples values -- power of 2 sample size should provide exact representation of this value and its integer multiples (integer in range of [0..SAMPLE_SIZE]. |
private static final int | SAMPLE_SIZE
Power of 2 sample size for lookup table of x values. |
private final double | x1
The coordinates of the 2 2D control points for a cubic Bezier curve, with implicit start point (0,0) and end point (1,1) -- each individual coordinate value must be in range [0,1]. |
private final double | x2
The coordinates of the 2 2D control points for a cubic Bezier curve, with implicit start point (0,0) and end point (1,1) -- each individual coordinate value must be in range [0,1]. |
private final double[] | xSamples
X values for the bezier curve, sampled at increments of 1/SAMPLE_SIZE -- this is used to find the good initial guess for parameter t, given an x. |
private final double | y1
The coordinates of the 2 2D control points for a cubic Bezier curve, with implicit start point (0,0) and end point (1,1) -- each individual coordinate value must be in range [0,1]. |
private final double | y2
The coordinates of the 2 2D control points for a cubic Bezier curve, with implicit start point (0,0) and end point (1,1) -- each individual coordinate value must be in range [0,1]. |
Access | Constructor and Description |
---|---|
public | SplineInterpolator(double
X coordinate of first control point, in range [0,1] px1, double Y coordinate of first control point, in range [0,1] py1, double X coordinate of second control point, in range [0,1] px2, double Y coordinate of second control point, in range [0,1] py2)Creates a new instance with control points (0,0) (px1,py1) (px2,py2) (1,1) -- px1, py1, px2, py2 all in range [0,1]. |
Modifier and Type | Method and Description |
---|---|
public double | Returns: corresponding y-value of cubic bezier curve -- in range [0,1]is x-value of cubic bezier curve, in range [0,1] x)Implements abstract javafx. Returns the y-value of the cubic bezier curve that corresponds to the x input. |
public boolean | equals(Object
the reference object with which to compare. obj)Overrides java. Indicates whether some other object is "equal to" this one. |
private double | Returns: the value of the Bezier curve at parameter tis the paramaterized value in range [0,1] t, double is 1st control point coordinate in range [0,1] p1, double is 2nd control point coordinate in range [0,1] p2)Use Bernstein basis to evaluate 1D cubic Bezier curve (quicker and more numerically stable than power basis) -- 1D control coordinates are (0, p1, p2, 1), where p1 and p2 are in range [0,1], and there is no ordering constraint on p1 and p2, i.e., p1 <= p2 does not have to be true. |
private double | Returns: the value of the Bezier curve at parameter tis the paramaterized value in range [0,1] t, double is 1st control point coordinate in range [0,1] p1, double is 2nd control point coordinate in range [0,1] p2)Evaluates Bernstein basis derivative of 1D cubic Bezier curve, where 1D control points are (0, p1, p2, 1), where p1 and p2 are in range [0,1], and there is no ordering constraint on p1 and p2, i.e., p1 <= p2 does not have to be true. |
private double | Returns: the parameter t (in range [0,1]) that produces xis x-value of cubic bezier curve, in range [0,1] x)Finds the parameter t that produces the given x-value for the curve -- uses Newton-Raphson to refine the value as opposed to subdividing until we are within some tolerance. |
private double | Returns: a good initial guess for parameter t (in range [0,1]) that gives xis x-value of cubic bezier curve, in range [0,1] x)Find an initial good guess for what parameter t might produce the x-value on the Bezier curve -- uses linear interpolation on the x-value sample array that was created on construction. |
public double | |
public double | |
public double | |
public double | |
public int | |
public String |
isCurveLinear | back to summary |
---|---|
private final boolean isCurveLinear Do the input control points form a line with (0,0) and (1,1), i.e., x1 == y1 and x2 == y2 -- if so, then all x(t) == y(t) for the curve. |
SAMPLE_INCREMENT | back to summary |
---|---|
private static final double SAMPLE_INCREMENT Difference in t used to calculate each of the xSamples values -- power of 2 sample size should provide exact representation of this value and its integer multiples (integer in range of [0..SAMPLE_SIZE]. |
SAMPLE_SIZE | back to summary |
---|---|
private static final int SAMPLE_SIZE Power of 2 sample size for lookup table of x values. |
x1 | back to summary |
---|---|
private final double x1 The coordinates of the 2 2D control points for a cubic Bezier curve, with implicit start point (0,0) and end point (1,1) -- each individual coordinate value must be in range [0,1]. |
x2 | back to summary |
---|---|
private final double x2 The coordinates of the 2 2D control points for a cubic Bezier curve, with implicit start point (0,0) and end point (1,1) -- each individual coordinate value must be in range [0,1]. |
xSamples | back to summary |
---|---|
private final double[] xSamples X values for the bezier curve, sampled at increments of 1/SAMPLE_SIZE -- this is used to find the good initial guess for parameter t, given an x. |
y1 | back to summary |
---|---|
private final double y1 The coordinates of the 2 2D control points for a cubic Bezier curve, with implicit start point (0,0) and end point (1,1) -- each individual coordinate value must be in range [0,1]. |
y2 | back to summary |
---|---|
private final double y2 The coordinates of the 2 2D control points for a cubic Bezier curve, with implicit start point (0,0) and end point (1,1) -- each individual coordinate value must be in range [0,1]. |
SplineInterpolator | back to summary |
---|---|
public SplineInterpolator(double px1, double py1, double px2, double py2) Creates a new instance with control points (0,0) (px1,py1) (px2,py2) (1,1) -- px1, py1, px2, py2 all in range [0,1].
|
curve | back to summary |
---|---|
public double curve(double x) Implements abstract javafx. Returns the y-value of the cubic bezier curve that corresponds to the x input.
|
equals | back to summary |
---|---|
public boolean equals(Object obj) Overrides java. Doc from java. Indicates whether some other object is "equal to" this one.
The
An equivalence relation partitions the elements it operates on into equivalence classes; all the members of an equivalence class are equal to each other. Members of an equivalence class are substitutable for each other, at least for some purposes. |
eval | back to summary |
---|---|
private double eval(double t, double p1, double p2) Use Bernstein basis to evaluate 1D cubic Bezier curve (quicker and more numerically stable than power basis) -- 1D control coordinates are (0, p1, p2, 1), where p1 and p2 are in range [0,1], and there is no ordering constraint on p1 and p2, i.e., p1 <= p2 does not have to be true.
|
evalDerivative | back to summary |
---|---|
private double evalDerivative(double t, double p1, double p2) Evaluates Bernstein basis derivative of 1D cubic Bezier curve, where 1D control points are (0, p1, p2, 1), where p1 and p2 are in range [0,1], and there is no ordering constraint on p1 and p2, i.e., p1 <= p2 does not have to be true.
|
findTForX | back to summary |
---|---|
private double findTForX(double x) Finds the parameter t that produces the given x-value for the curve -- uses Newton-Raphson to refine the value as opposed to subdividing until we are within some tolerance.
|
getInitialGuessForT | back to summary |
---|---|
private double getInitialGuessForT(double x) Find an initial good guess for what parameter t might produce the x-value on the Bezier curve -- uses linear interpolation on the x-value sample array that was created on construction.
|
getX1 | back to summary |
---|---|
public double getX1() |
getX2 | back to summary |
---|---|
public double getX2() |
getY1 | back to summary |
---|---|
public double getY1() |
getY2 | back to summary |
---|---|
public double getY2() |
hashCode | back to summary |
---|---|
public int hashCode() Overrides java. Doc from java. Returns a hash code value for this object. This method is
supported for the benefit of hash tables such as those provided by
The general contract of
|
toString | back to summary |
---|---|
public String toString() Overrides java. Doc from java. Returns a string representation of the object.
Satisfying this method's contract implies a non- |