Package-level declarations

Trajectory definitions

Types

Link copied to clipboard
abstract class BaseTrajectoryBuilder<T : BaseTrajectoryBuilder<T>>(startPose: Pose2d, startDeriv: Pose2d, startSecondDeriv: Pose2d)

Easy-to-use builder for creating Trajectory instances.

Link copied to clipboard
data class DisplacementMarker(val producer: DisplacementProducer, val callback: MarkerCallback)

Trajectory marker that is triggered when the specified displacement passes.

Link copied to clipboard
fun interface DisplacementProducer

SAM interface that produces a marker absolute displacement offset from the trajectory length.

Link copied to clipboard
fun interface MarkerCallback

SAM interface for marker callbacks.

Link copied to clipboard

Trajectory segment backed by a Path and a MotionProfile.

Link copied to clipboard

Builder for trajectories with static constraints.

Link copied to clipboard
data class SpatialMarker(val point: Vector2d, val callback: MarkerCallback)

Trajectory marker that is triggered when the trajectory passes the specified point.

Link copied to clipboard
data class TemporalMarker(val producer: TimeProducer, val callback: MarkerCallback)

Trajectory marker that is triggered when the specified time passes.

Link copied to clipboard
fun interface TimeProducer

SAM interface that produces a marker absolute time offset from the trajectory duration.

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

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

Link copied to clipboard
open class TrajectoryBuilder(startPose: Pose2d, startDeriv: Pose2d, startSecondDeriv: Pose2d, val baseVelConstraint: TrajectoryVelocityConstraint, val baseAccelConstraint: TrajectoryAccelerationConstraint, val baseAngVel: Angle, val baseAngAccel: Angle, val baseAngJerk: Angle, start: MotionState, resolution: Double) : BaseTrajectoryBuilder<TrajectoryBuilder>

Builder for trajectories with dynamic constraints.

Link copied to clipboard

Trajectory generator for creating trajectories with dynamic and static constraints from paths.

Link copied to clipboard
data class TrajectoryMarker(val time: Double, val callback: MarkerCallback)

Trajectory marker that is triggered when the specified time passes.

Link copied to clipboard

Generic trajectory segment.

Link copied to clipboard

Trajectory segment representing a point turn.

Link copied to clipboard
class WaitSegment(pose: Pose2d, duration: Double) : TrajectorySegment

Static trajectory segment that holds a constant pose.