MotionState

class MotionState @JvmOverloads constructor(val x: Double, val v: Double, val a: Double = 0.0, val j: Double = 0.0)

Kinematic state of a motion profile at any given time.

Constructors

Link copied to clipboard
constructor(x: Double, v: Double, a: Double = 0.0, j: Double = 0.0)

Properties

Link copied to clipboard
val a: Double = 0.0
Link copied to clipboard
val j: Double = 0.0
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard

Returns a flipped (negated) version of the state.

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

Returns the MotionState at time t.

Link copied to clipboard

Returns the state with velocity, acceleration, and jerk zeroed.

Link copied to clipboard
open override fun toString(): String