class Trajectory
Time-parametrized trajectory of poses.
segments - trajectory segments
Trajectory(segments: List<TrajectorySegment> = emptyList())
Time-parametrized trajectory of poses.  | 
val segments: List<TrajectorySegment>
trajectory segments  | 
fun acceleration(time: Double): Pose2d
Returns the pose acceleration at the specified time.  | 
|
fun duration(): Double
Returns the trajectory duration.  | 
|
fun end(): Pose2d
Returns the end pose.  | 
|
fun endAcceleration(): Pose2d
Returns the end pose acceleration.  | 
|
fun endVelocity(): Pose2d
Returns the end pose velocity.  | 
|
operator fun get(time: Double): Pose2d
Returns the pose at the specified time.  | 
|
fun start(): Pose2d
Returns the start pose.  | 
|
fun startAcceleration(): Pose2d
Returns the start pose acceleration.  | 
|
fun startVelocity(): Pose2d
Returns the start pose velocity.  | 
|
fun velocity(time: Double): Pose2d
Returns the pose velocity at the specified time.  |