Path

public final class Path

Path composed of a list of parametric curves and heading interpolators.

Parameters

segments

list of path segments

Constructors

Link copied to clipboard
public Path Path(PathSegment segment)
public Path Path(List<PathSegment> segments)

Properties

Link copied to clipboard
private final List<PathSegment> 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 Pose2d deriv(Double s)
public final Pose2d deriv(Double s, Double t)

Returns the pose derivative s units along the path.

Link copied to clipboard
public final Pose2d end()

Returns the end pose.

Link copied to clipboard
public final Pose2d endDeriv()

Returns the end pose derivative.

Link copied to clipboard
public final Pose2d endSecondDeriv()

Returns the end pose 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 Pose2d get(Double s)
public final Pose2d get(Double s, Double t)

Returns the pose s units along the path.

Link copied to clipboard
public final List<PathSegment> getSegments()
Link copied to clipboard
Link copied to clipboard
public final Pose2d 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
public final Pose2d secondDeriv(Double s, Double t)

Returns the pose second derivative s units along the path.

Link copied to clipboard
public final Pair<PathSegment, Double> segment(Double s)

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

Link copied to clipboard
public final Pose2d start()

Returns the start pose.

Link copied to clipboard
public final Pose2d startDeriv()

Returns the start pose derivative.

Link copied to clipboard
public final Pose2d startSecondDeriv()

Returns the start pose 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.