Jacobians during simulation.step() #3371
Replies: 7 comments
-
Can you please help us understand this implementation in Bullet? |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
Hi Erwin, |
Beta Was this translation helpful? Give feedback.
-
If there is no collision detection, and no contact points there is no way to generate the LCP. I think you mean, there IS collision detection, and there ARE contact points (with positive distance, so a positive separation instead of penetration), but Bullet is discarding those contact points? You want to disable the discarding of contact points with positive distance, and allow to generate contact points at (large) distance? |
Beta Was this translation helpful? Give feedback.
-
Yes, that's exactly what we want to do. How we can do this and is there a function to set this distance? |
Beta Was this translation helpful? Give feedback.
-
Try increasing the (global) variable gContactBreakingThreshold (to allow checking collisions at a larger distance), and increase the contactProcessingThreshold (allow contacts with larger positive distance to enter the LCP). You may need to do more work, use a debugger and enter the Bullet source code, put breakpoints and see where things are discarded. |
Beta Was this translation helpful? Give feedback.
-
Great, thanks for the tips I will check these parameters. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
We are trying to understand the implementation a bit in detail. Could you please help me understand the following questions
Thanks in advance.
Beta Was this translation helpful? Give feedback.
All reactions