PathSegment

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

Path segment composed of a parametric curve and heading interpolator.

Parameters

curve

parametric curve

interpolator

heading interpolator

Constructors

Link copied to clipboard
constructor(curve: ParametricCurve, interpolator: HeadingInterpolator = TangentInterpolator())

Properties

Link copied to clipboard
Link copied to clipboard

Functions

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
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

Returns the end tangent angle.

Link copied to clipboard
operator fun get(s: Double, t: Double = reparam(s)): Pose2d
Link copied to clipboard
fun internalDeriv(s: Double, t: Double = reparam(s)): Pose2d
Link copied to clipboard
fun length(): Double
Link copied to clipboard
Link copied to clipboard
fun secondDeriv(s: Double, t: Double = reparam(s)): Pose2d
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

Returns the start tangent angle.

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