Return the torque (in Newtons * meters) on body 2 required to satisfy the joint constraint in world-space * @return The current torque (in Newtons * meters) on body 2 */
| 150 | * @return The current torque (in Newtons * meters) on body 2 |
| 151 | */ |
| 152 | Vector3 BallAndSocketJoint::getReactionTorque(decimal timeStep) const { |
| 153 | assert(timeStep > MACHINE_EPSILON); |
| 154 | return Vector3(0, 0, 0); |
| 155 | } |
| 156 | |
| 157 | // Return a string representation |
| 158 | std::string BallAndSocketJoint::to_string() const { |