BaseTrajectoryBuilder

abstract class BaseTrajectoryBuilder<T : BaseTrajectoryBuilder<T>>(startPose: Pose2d, startDeriv: Pose2d, startSecondDeriv: Pose2d)

Easy-to-use builder for creating Trajectory instances.

Parameters

startPose

start pose

startDeriv

start derivative

startSecondDeriv

start second derivative

Inheritors

Constructors

Link copied to clipboard
protected constructor(startPose: Pose2d, startDeriv: Pose2d, startSecondDeriv: Pose2d)

Functions

Link copied to clipboard

Adds a marker at the current position of the trajectory.

fun addDisplacementMarker(displacement: Double, callback: MarkerCallback): T

Adds a marker to the trajectory at displacement.

fun addDisplacementMarker(displacement: (Double) -> Double, callback: MarkerCallback): T

Adds a marker to the trajectory at displacement evaluated with path length.

fun addDisplacementMarker(scale: Double, offset: Double, callback: MarkerCallback): T

Adds a marker to the trajectory at scale * path length + offset.

Link copied to clipboard
fun addLine(endPosition: Vector2d, headingInterpolation: HeadingInterpolation = TangentHeading): T

Adds a line segment with the specified heading interpolation.

Link copied to clipboard
protected fun addPathSegment(add: () -> Unit)
Link copied to clipboard
protected fun addSegment(segment: TrajectorySegment)
Link copied to clipboard
fun addSpatialMarker(point: Vector2d, callback: MarkerCallback): T

Adds a marker that will be triggered at the closest trajectory point to point.

Link copied to clipboard
fun addSpline(endPosition: Vector2d, endTangent: Angle, startTangentMag: Double = -1.0, endTangentMag: Double = -1.0, headingInterpolation: HeadingInterpolation = TangentHeading): T

Adds a spline segment with the specified heading interpolation.

Link copied to clipboard
fun addTemporalMarker(time: Double, callback: MarkerCallback): T

Adds a marker to the trajectory at time.

fun addTemporalMarker(time: (Double) -> Double, callback: MarkerCallback): T

Adds a marker to the trajectory at time evaluated with the trajectory duration.

fun addTemporalMarker(scale: Double, offset: Double, callback: MarkerCallback): T

Adds a marker to the trajectory at scale * trajectory duration + offset.

Link copied to clipboard
fun back(distance: Double): T

Adds a line straight backward.

Link copied to clipboard

Constructs the Trajectory instance.

Link copied to clipboard
fun forward(distance: Double): T

Adds a line straight forward.

Link copied to clipboard
fun lineTo(endPosition: Vector2d): T

Adds a line segment with tangent heading interpolation.

Link copied to clipboard
fun lineToConstantHeading(endPosition: Vector2d): T

Adds a line segment with constant heading interpolation.

Link copied to clipboard

Adds a line segment with linear heading interpolation.

Link copied to clipboard

Adds a line segment with spline heading interpolation.

Link copied to clipboard
protected abstract fun makePathSegment(path: Path): PathTrajectorySegment
Link copied to clipboard
protected abstract fun makeTurnSegment(pose: Pose2d, angle: Angle): TurnSegment
Link copied to clipboard
protected fun pushPath()
Link copied to clipboard
fun splineTo(endPosition: Vector2d, endTangent: Angle): T

Adds a spline segment with tangent heading interpolation.

Link copied to clipboard
fun splineToConstantHeading(endPosition: Vector2d, endTangent: Angle): T

Adds a spline segment with constant heading interpolation.

Link copied to clipboard
fun splineToLinearHeading(endPose: Pose2d, endTangent: Angle): T

Adds a spline segment with linear heading interpolation.

Link copied to clipboard
fun splineToSplineHeading(endPose: Pose2d, endTangent: Angle): T

Adds a spline segment with spline heading interpolation.

Link copied to clipboard
fun strafeLeft(distance: Double): T

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

Link copied to clipboard
fun strafeRight(distance: Double): T

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

Link copied to clipboard
fun strafeTo(endPosition: Vector2d): T

Adds a strafe path segment.

Link copied to clipboard
fun turn(angle: Angle): T

Adds a turn segment that turns the specified angle.

Link copied to clipboard
fun wait(seconds: Double): T

Adds a wait segment that waits seconds.