Package-level declarations

Path definitions

Types

Link copied to clipboard
class CircularArc(val center: Vector2d, val radius: Double, startAngle: Angle, endAngle: Angle) : ParametricCurve
Link copied to clipboard

Exception thrown when empty path segments are requested.

Link copied to clipboard

Parametric representation of a line.

Link copied to clipboard
abstract class ParametricCurve

Parametric curve with two components (x and y). These curves are reparameterized from an internal parameter (t) to the arc length parameter (s). Note that the arc length reparameterization is lazy, meaning that it is computed only when needed. To precompute, use reparameterize.

Link copied to clipboard
class Path(val segments: List<PathSegment>)

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

Link copied to clipboard
class PathBuilder(startPose: Pose2d, startDeriv: Pose2d, startSecondDeriv: Pose2d)

Easy-to-use builder for creating Path instances.

Link copied to clipboard

Exception thrown by PathBuilder and PositionPathBuilder.

Link copied to clipboard

Exception thrown when PathBuilder methods are chained illegally. This commonly arises when switching from non-tangent interpolation back to tangent interpolation and when splicing paths.

Link copied to clipboard
class PathSegment @JvmOverloads constructor(val curve: ParametricCurve, val interpolator: HeadingInterpolator = TangentInterpolator())

Path segment composed of a parametric curve and heading interpolator.

Link copied to clipboard
class PositionPath(val segments: List<ParametricCurve>)

Path composed of a list of parametric curves.

Link copied to clipboard
class PositionPathBuilder(startPos: Vector2d, startDeriv: Vector2d, startSecondDeriv: Vector2d)

Easy-to-use builder for creating PositionPath instances. Note that this builder does not respect tangent continuity.

Link copied to clipboard
class QuinticPolynomial(start: Double, startDeriv: Double, startSecondDeriv: Double, end: Double, endDeriv: Double, endSecondDeriv: Double)

Quintic Bezier Polynomial

Link copied to clipboard

Quintic Bezier Spline