Trajectory

public final class Trajectory

Trajectory composed of a list of trajectory segments and trajectory markers.

Parameters

segments

list of trajectory segments

markers

list of trajectory markers

See also

Constructors

Link copied to clipboard

Properties

Link copied to clipboard
private final List<TrajectoryMarker> markers
Link copied to clipboard
private final Path path

The path representing this trajectory, excluding turn and wait segments.

Link copied to clipboard

Functions

Link copied to clipboard
public final Pose2d acceleration(Double t)

Returns the pose acceleration t seconds into the trajectory.

Link copied to clipboard
public final Pose2d deriv(Double t)

Returns the pose derivative t seconds into the trajectory.

Link copied to clipboard
public final Double distance(Double t)

Returns the distance travelled t seconds into the trajectory.

Link copied to clipboard
public final Double duration()

Returns the duration of the trajectory.

Link copied to clipboard
public final Pose2d end()

Returns the end pose.

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

Returns the pose t seconds into the trajectory.

Link copied to clipboard
Link copied to clipboard
public final Path getPath()

The path representing this trajectory, excluding turn and wait segments.

Link copied to clipboard
Link copied to clipboard
public final Double length()

Returns the length of the trajectory.

Link copied to clipboard
public final Pose2d secondDeriv(Double t)

Returns the pose second derivative t seconds into the trajectory.

Link copied to clipboard

Returns a pair containing the TrajectorySegment at t seconds along the path and the duration along that segment.

Link copied to clipboard
public final Pose2d start()

Returns the start pose.

Link copied to clipboard
public final Pose2d velocity(Double t)

Returns the pose velocity t seconds into the trajectory.