MotionSegment

public final class MotionSegment

Segment of a motion profile with constant acceleration.

Parameters

start

start motion state

dt

time delta

Constructors

Link copied to clipboard

Properties

Link copied to clipboard
private final Double dt
Link copied to clipboard
private final MotionState start

Functions

Link copied to clipboard
public final MotionState end()

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

Link copied to clipboard
public final MotionSegment flipped()

Returns a flipped (negated) version of the segment.

Link copied to clipboard
public final MotionState get(Double t)

Returns the MotionState at time t.

Link copied to clipboard
public final Double getDt()
Link copied to clipboard
public final MotionState getStart()
Link copied to clipboard
public final MotionSegment reversed()

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
public String toString()