Path

class Path(val segments: List<PathSegment>)

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

Parameters

segments

list of path segments

Constructors

Link copied to clipboard
constructor(segment: PathSegment)
constructor(segments: List<PathSegment>)

Properties

Link copied to clipboard

Functions

Link copied to clipboard

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
fun curvature(s: Double, t: Double = reparam(s)): Double
Link copied to clipboard
fun deriv(s: Double, t: Double = reparam(s)): Pose2d

Returns the pose derivative s units along the path.

Link copied to clipboard
fun end(): Pose2d

Returns the end pose.

Link copied to clipboard

Returns the end pose derivative.

Link copied to clipboard

Returns the end pose second derivative.

Link copied to clipboard
fun fastProject(queryPoint: Vector2d, projectGuess: Double = length() / 2.0, iterations: Int = 10): Double

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

Link copied to clipboard
operator fun get(s: Double, t: Double = reparam(s)): Pose2d

Returns the pose s units along the path.

Link copied to clipboard
fun internalDeriv(s: Double, t: Double = reparam(s)): Pose2d
Link copied to clipboard
fun internalGet(segmentIndex: Int, t: Double): Pose2d

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

Link copied to clipboard
Link copied to clipboard
fun length(): Double

Returns the length of the path.

Link copied to clipboard
fun project(queryPoint: Vector2d, ds: Double = 3.0): Double

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

Link copied to clipboard
Link copied to clipboard

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

Link copied to clipboard
fun secondDeriv(s: Double, t: Double = reparam(s)): Pose2d

Returns the pose second derivative s units along the path.

Link copied to clipboard

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

Link copied to clipboard
fun start(): Pose2d

Returns the start pose.

Link copied to clipboard

Returns the start pose derivative.

Link copied to clipboard

Returns the start pose second derivative.

Link copied to clipboard
fun tangentAngle(s: Double, t: Double = reparam(s)): Angle

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