JointAxisConfig.free constructor

const JointAxisConfig.free({
  1. JointMotor? motor,
})

The axis moves freely, optionally driven by motor.

Implementation

const JointAxisConfig.free({this.motor})
  : motion = JointAxisMotion.free,
    lowerLimit = 0,
    upperLimit = 0;