PositionPath

public final class PositionPath

Path composed of a list of parametric curves.

Parameters

segments

list of curves.

Constructors

Link copied to clipboard

Properties

Link copied to clipboard
private final List<ParametricCurve> segments

Functions

Link copied to clipboard
public final Pair<Double, ParametricCurve> compositeProject(Vector2d queryPoint)

Projects queryPoint onto the current path by calling ParametricCurve.project on every segment and comparing the results. May be faster or slower than fastProject depending on the path.

Link copied to clipboard
public final Double curvature(Double s)
public final Double curvature(Double s, Double t)
Link copied to clipboard
public final Vector2d deriv(Double s)
public final Vector2d deriv(Double s, Double t)

Returns the position derivative s units along the path.

Link copied to clipboard
public final Vector2d end()

Returns the end position.

Link copied to clipboard
public final Vector2d endDeriv()

Returns the end position derivative.

Link copied to clipboard
public final Vector2d endSecondDeriv()

Returns the end position second derivative.

Link copied to clipboard
public final Double fastProject(Vector2d queryPoint, Double projectGuess, Integer iterations)

Project queryPoint onto the current path using the iterative method described here.

Link copied to clipboard
public final Vector2d get(Double s)
public final Vector2d get(Double s, Double t)

Returns the position s units along the path.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
public final Vector2d internalGet(Integer segmentIndex, Double t)

Returns the pose along the segment specified by segmentIndex at the internal parameter t.

Link copied to clipboard
Link copied to clipboard
public final Double length()

Returns the length of the path.

Link copied to clipboard
public final Double project(Vector2d queryPoint, Double ds)

Project queryPoint onto the current path by applying fastProject with various guesses along the path.

Link copied to clipboard
public final Double reparam(Double s)
Link copied to clipboard
public final Unit reparameterize()

Calls ParametricCurve.reparameterize on all the curves in this path.

Link copied to clipboard

Returns the position second derivative s units along the path.

Link copied to clipboard

Returns a pair containing the ParametricCurve at s inches along the path and the length along that segment.

Link copied to clipboard
public final Vector2d start()

Returns the start position.

Link copied to clipboard
public final Vector2d startDeriv()

Returns the start position derivative.

Link copied to clipboard
public final Vector2d startSecondDeriv()

Returns the start position second derivative.

Link copied to clipboard
public final Angle tangentAngle(Double s, Double t)

Returns the angle of the tangent line s units along the path.