MotionSegment

class MotionSegment(val start: MotionState, val dt: Double)

Segment of a motion profile with constant acceleration.

Parameters

start

start motion state

dt

time delta

Constructors

Link copied to clipboard
constructor(start: MotionState, dt: Double)

Properties

Link copied to clipboard
val dt: Double
Link copied to clipboard

Functions

Link copied to clipboard

Returns the MotionState at the end of the segment (time dt).

Link copied to clipboard

Returns a flipped (negated) version of the segment.

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

Returns the MotionState at time t.

Link copied to clipboard

Returns a reversed version of the segment. Note: it isn't possible to reverse a segment completely so this method only guarantees that the start and end velocities will be swapped.

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