TrajectoryGenerator

Trajectory generator for creating trajectories with dynamic and static constraints from paths.

Functions

Link copied to clipboard
fun convertMarkers(segments: List<TrajectorySegment>, temporalMarkers: List<TemporalMarker>, displacementMarkers: List<DisplacementMarker>, spatialMarkers: List<SpatialMarker>): List<TrajectoryMarker>
Link copied to clipboard
Link copied to clipboard
fun generatePathTrajectorySegment(path: Path, velocityConstraint: TrajectoryVelocityConstraint, accelerationConstraint: TrajectoryAccelerationConstraint, start: MotionState = MotionState(0.0, 0.0, 0.0), goal: MotionState = MotionState(path.length(), 0.0, 0.0), resolution: Double = 0.25): PathTrajectorySegment

Generates a dynamic constraint path trajectory segment.

Link copied to clipboard
fun generateProfile(path: Path, velocityConstraint: TrajectoryVelocityConstraint, accelerationConstraint: TrajectoryAccelerationConstraint, start: MotionState, goal: MotionState, resolution: Double): MotionProfile
Link copied to clipboard
fun generateSimplePathTrajectorySegment(path: Path, maxProfileVel: Double, maxProfileAccel: Double, maxProfileJerk: Double, start: MotionState = MotionState(0.0, 0.0, 0.0, 0.0), goal: MotionState = MotionState(path.length(), 0.0, 0.0, 0.0)): PathTrajectorySegment

Generates a simple constraint path trajectory segment.

Link copied to clipboard
fun generateSimpleProfile(maxProfileVel: Double, maxProfileAccel: Double, maxProfileJerk: Double, start: MotionState, goal: MotionState, overshoot: Boolean = false): MotionProfile
Link copied to clipboard
fun generateTrajectory(segments: List<TrajectorySegment>, temporalMarkers: List<TemporalMarker>, displacementMarkers: List<DisplacementMarker>, spatialMarkers: List<SpatialMarker>): Trajectory

Generates a trajectory.

Link copied to clipboard
fun generateTurnSegment(pose: Pose2d, angle: Angle, maxAngVel: Angle, maxAngAccel: Angle, maxAngJerk: Angle, overshoot: Boolean = false): TurnSegment

Generates a turn segment.

Link copied to clipboard
fun pointToTime(trajectory: Trajectory, point: Vector2d): Double