(force float64)
| 262 | } |
| 263 | |
| 264 | func (joint *B2FrictionJoint) SetMaxForce(force float64) { |
| 265 | B2Assert(B2IsValid(force) && force >= 0.0) |
| 266 | joint.M_maxForce = force |
| 267 | } |
| 268 | |
| 269 | func (joint B2FrictionJoint) GetMaxForce() float64 { |
| 270 | return joint.M_maxForce |