Constraints

data class Constraints(val maxVel: Double, val maxAccel: Double, val maxAngVel: Double, val maxAngAccel: Double, val trackWidth: Double)

Data class representing the constraints for a trajectory.

Constructors

Link copied to clipboard
constructor(maxVel: Double, maxAccel: Double, maxAngVel: Double, maxAngAccel: Double, trackWidth: Double)

Properties

Link copied to clipboard

The maximum acceleration.

Link copied to clipboard

The maximum angular acceleration.

Link copied to clipboard

The maximum angular velocity.

Link copied to clipboard

The maximum velocity.

Link copied to clipboard

The track width.