Can rigid bodies move beyond the degrees of freedom of joints? #722
Answered
by
ThierryBerger
GhostMinerPlus
asked this question in
Q&A
|
While I use FixedJoint and RevoluteJoint to bind two rigid bodies, they still can move from each other if I add a big force on one of them. |
Answered by
ThierryBerger
Aug 26, 2024
Replies: 1 comment 2 replies
|
When using This behaviour can be improved by tweaking rapier configuration (increasing for example But if you're looking for a robust simulation of joints, you'll want to use I'm converting to discussion, so you can mark it as answered if satisfying. |
2 replies
Answer selected by
GhostMinerPlus
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When using
ImpulseJointSet, the approach to resolving constraints is iterative, which means there can be "errors", or approximations.This behaviour can be improved by tweaking rapier configuration (increasing for example
IntegrationParameters::num_solver_iterationsor loweringIntegrationParameters::dt).But if you're looking for a robust simulation of joints, you'll want to use
MultibodyJointSet.I'm converting to discussion, so you can mark it as answered if satisfying.