buildDesc method
Builds the description for the current property values.
Implementation
@override
sim.JointDesc buildDesc(int bodyA, int bodyB, bool collisionsEnabled) =>
sim.RevoluteJointDesc(
bodyA: bodyA,
bodyB: bodyB,
localAnchorA: _localAnchorA,
localAnchorB: _localAnchorB,
localAxisA: _localAxisA,
localAxisB: _localAxisB,
lowerLimit: _lowerLimit,
upperLimit: _upperLimit,
motorTargetVelocity: _motorTargetVelocity,
motorMaxForce: _motorMaxForce,
collisionsEnabled: collisionsEnabled,
);