class MotionState
Kinematic state of a motion profile at any given time.
MotionState(x: Double, v: Double, a: Double = Double.NaN, j: Double = Double.NaN)
Kinematic state of a motion profile at any given time.  | 
val a: Double | 
|
val j: Double | 
|
val v: Double | 
|
val x: Double | 
fun flipped(): MotionState
Returns a flipped (negated) version of the state.  | 
|
operator fun get(t: Double): MotionState
Returns the MotionState at time t.  | 
|
fun toString(): String |