PositionPath

class PositionPath(val segments: List<ParametricCurve>)

Path composed of a list of parametric curves.

Parameters

segments

list of curves.

Constructors

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

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)): Vector2d

Returns the position derivative s units along the path.

Link copied to clipboard
fun end(): Vector2d

Returns the end position.

Link copied to clipboard

Returns the end position derivative.

Link copied to clipboard

Returns the end position 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)): Vector2d

Returns the position s units along the path.

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

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)): Vector2d

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

Returns the start position.

Link copied to clipboard

Returns the start position derivative.

Link copied to clipboard

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