Package-level declarations

Trajectory constraint definitions

Types

Link copied to clipboard

Constraint limiting angular acceleration.

Link copied to clipboard
class AngularAccelVelocityConstraint(val maxAngAccel: Angle, val maxTranslationAccel: Double) : TrajectoryVelocityConstraint

A velocity constraint that prevents over-accelerating to ensure its corresponding angular and translational acceleration constraints are satisfied.

Link copied to clipboard

Constraint limiting angular velocity.

Link copied to clipboard
@Serializable
data class DiffSwerveConstraints @JvmOverloads constructor(val maxGearVel: Double, val trackWidth: Double, val maxVel: Double = 30.0, val maxAccel: Double = 30.0, val maxAngVel: Angle = 180.deg, val maxAngAccel: Angle = 180.deg, val maxAngJerk: Angle = 0.deg) : TrajectoryConstraints
Link copied to clipboard
class DriveVelocityConstraint(val maxWheelVel: Double, robotToWheelVelocities: (Pose2d) -> List<Double>) : TrajectoryVelocityConstraint

Drive constraint that limits maximum wheel velocities.

Link copied to clipboard
@Serializable
data class GenericConstraints @JvmOverloads constructor(val maxVel: Double = 30.0, val maxAccel: Double = 30.0, val maxAngVel: Angle = 180.deg, val maxAngAccel: Angle = 180.deg, val maxAngJerk: Angle = 0.deg) : TrajectoryConstraints
Link copied to clipboard
typealias Interval = Pair<Double, Double>
Link copied to clipboard
Link copied to clipboard
@Serializable
data class MecanumConstraints @JvmOverloads constructor(val maxWheelVel: Double, val trackWidth: Double, val wheelBase: Double, val lateralMultiplier: Double, val maxVel: Double = 30.0, val maxAccel: Double = 30.0, val maxAngVel: Angle = 180.deg, val maxAngAccel: Angle = 180.deg, val maxAngJerk: Angle = 0.deg) : TrajectoryConstraints
Link copied to clipboard

Composite constraint representing the minimum of its constituent acceleration constraints.

Link copied to clipboard

Composite constraint representing the minimum of its constituent velocity constraints.

Link copied to clipboard
@Serializable
data class SwerveConstraints @JvmOverloads constructor(val maxWheelVel: Double, val trackWidth: Double, val wheelBase: Double, val maxVel: Double = 30.0, val maxAccel: Double = 30.0, val maxAngVel: Angle = 180.deg, val maxAngAccel: Angle = 180.deg, val maxAngJerk: Angle = 0.deg) : TrajectoryConstraints
Link copied to clipboard
@Serializable
data class TankConstraints @JvmOverloads constructor(val maxWheelVel: Double, val trackWidth: Double, val maxVel: Double = 30.0, val maxAccel: Double = 30.0, val maxAngVel: Angle = 180.deg, val maxAngAccel: Angle = 180.deg, val maxAngJerk: Angle = 0.deg) : TrajectoryConstraints
Link copied to clipboard

Motion profile acceleration constraint.

Link copied to clipboard

Configuration describing constraints and other robot-specific parameters.

Link copied to clipboard

Motion profile velocity constraint.

Link copied to clipboard

Constraint limiting translational acceleration.

Link copied to clipboard

Constraint limiting translational velocity.

Link copied to clipboard

Exception thrown when no velocity or acceleration combination exists that satisfies the constraint.

Functions

Link copied to clipboard
operator fun Interval.contains(vel: Double): Boolean
Link copied to clipboard