Trajectory

class Trajectory(val segments: List<TrajectorySegment>, val markers: List<TrajectoryMarker> = emptyList())

Trajectory composed of a list of trajectory segments and trajectory markers.

Parameters

segments

list of trajectory segments

markers

list of trajectory markers

See also

Constructors

Link copied to clipboard
constructor(segment: TrajectorySegment, markers: List<TrajectoryMarker> = emptyList())
constructor(path: Path, profile: MotionProfile, markers: List<TrajectoryMarker> = emptyList())
constructor(segments: List<TrajectorySegment>, markers: List<TrajectoryMarker> = emptyList())

Properties

Link copied to clipboard
Link copied to clipboard
val path: Path

The path representing this trajectory, excluding turn and wait segments.

Link copied to clipboard

Functions

Link copied to clipboard

Returns the pose acceleration t seconds into the trajectory.

Link copied to clipboard

Returns the pose derivative t seconds into the trajectory.

Link copied to clipboard

Returns the distance travelled t seconds into the trajectory.

Link copied to clipboard

Returns the duration of the trajectory.

Link copied to clipboard
fun end(): Pose2d

Returns the end pose.

Link copied to clipboard
operator fun get(t: Double): Pose2d

Returns the pose t seconds into the trajectory.

Link copied to clipboard
fun length(): Double

Returns the length of the trajectory.

Link copied to clipboard

Returns the pose second derivative t seconds into the trajectory.

Link copied to clipboard

Returns a pair containing the TrajectorySegment at t seconds along the path and the duration along that segment.

Link copied to clipboard
fun start(): Pose2d

Returns the start pose.

Link copied to clipboard

Returns the pose velocity t seconds into the trajectory.