Package-level declarations

Motion profile representation and generation

Types

Link copied to clipboard

Motion profile acceleration constraint.

Link copied to clipboard
class MotionProfile(val segments: List<MotionSegment>)

Trapezoidal motion profile composed of motion segments.

Link copied to clipboard

Easy-to-use builder for creating motion profiles.

Link copied to clipboard

Motion profile generator with arbitrary start and end motion states and either dynamic constraints or jerk limiting.

Link copied to clipboard
class MotionSegment(val start: MotionState, val dt: Double)

Segment of a motion profile with constant acceleration.

Link copied to clipboard
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.

Link copied to clipboard
fun interface VelocityConstraint

Motion profile velocity constraint.