QuinticSpline

public final class QuinticSpline extends ParametricCurve

Quintic Bezier Spline

Constructors

Link copied to clipboard

Types

Link copied to clipboard
public final class Knot

Class for representing the end points of interpolated quintic splines.

Properties

Link copied to clipboard
private final List<Vector2d> coeffs
Link copied to clipboard
private final List<Vector2d> dcoeffs
Link copied to clipboard
private final QuinticPolynomial x

X polynomial (x(t)).

Link copied to clipboard
private final QuinticPolynomial y

Y polynomial (y(t)).

Functions

Link copied to clipboard
public final List<Vector2d> getCoeffs()
Link copied to clipboard
public final List<Vector2d> getDcoeffs()
Link copied to clipboard
public final QuinticPolynomial getX()

X polynomial (x(t)).

Link copied to clipboard
public final QuinticPolynomial getY()

Y polynomial (y(t)).

Link copied to clipboard
public Double length()

Returns the length of the curve.

Link copied to clipboard
public Double project(Vector2d query)

Returns the nearest point on the curve in terms of the internal parameter t.

public final Double project(Vector2d p, Double tolerance)

Projection algorithm based on this paper, but with the Modified Uspensky algorithm instead of using a Sturm sequence.

Link copied to clipboard

If this curve can not trivially be reparameterized to an arc length parameter, it should be done here.