SimpleTrajectoryBuilder

Builder for trajectories with static constraints.

Constructors

Link copied to clipboard
constructor(startPose: Pose2d = Pose2d(), startTangent: Angle = startPose.heading, maxProfileVel: Double, maxProfileAccel: Double, maxProfileJerk: Double = 0.0, maxAngVel: Angle, maxAngAccel: Angle, maxAngJerk: Angle = 0.rad)

Create a builder from a start pose and motion state. This is the recommended constructor for creating trajectories from rest.

constructor(startPose: Pose2d = Pose2d(), reversed: Boolean, maxProfileVel: Double, maxProfileAccel: Double, maxProfileJerk: Double = 0.0, maxAngVel: Angle, maxAngAccel: Angle, maxAngJerk: Angle = 0.deg)

Create a builder from a start pose with a reversed tangent. This constructor is used to execute trajectories backwards.

constructor(trajectory: Trajectory, t: Double, maxProfileVel: Double, maxProfileAccel: Double, maxProfileJerk: Double = 0.0, maxAngVel: Angle, maxAngAccel: Angle, maxAngJerk: Angle = 0.deg)

Create a builder from an active trajectory. This is useful for interrupting a live trajectory and smoothly transitioning to a new one.

Functions

Link copied to clipboard
protected open override fun makePathSegment(path: Path): PathTrajectorySegment
Link copied to clipboard
protected open override fun makeTurnSegment(pose: Pose2d, angle: Angle): TurnSegment