PositionPathBuilder

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.

Parameters

startPos

start position

startDeriv

start derivative

startSecondDeriv

start second derivative

See also

Constructors

Link copied to clipboard
constructor(startPos: Vector2d, startTangent: Angle)
constructor(path: PositionPath, s: Double)
constructor(startPos: Vector2d, startDeriv: Vector2d, startSecondDeriv: Vector2d)

Functions

Link copied to clipboard

Adds a line straight backward.

Link copied to clipboard

Constructs the PositionPath instance.

Link copied to clipboard

Adds a line straight forward.

Link copied to clipboard

Adds a segment that travels left in the robot reference frame.

Link copied to clipboard

Adds a line segment with tangent heading interpolation.

Link copied to clipboard

Constructs the Path instance without reparameterizing the curves.

Link copied to clipboard

Adds a segment that travels right in the robot reference frame.

Link copied to clipboard
fun splineTo(endPosition: Vector2d, endTangent: Angle, startTangentMag: Double = -1.0, endTangentMag: Double = -1.0): PositionPathBuilder

Adds a spline segment.

Link copied to clipboard
fun turn(angle: Angle, radius: Double): PositionPathBuilder

Adds a CircularArc segment that turns angle.

Link copied to clipboard
Link copied to clipboard