Skip to content

Question about collision calculation time #635

Closed Answered by Everest-Zhao
Linjackffy asked this question in Q&A
Discussion options

You must be logged in to vote

I have not used Pinocchio, but based on my understanding of FCL and Coal, this behavior is normal. If you are using a broad phase manager, it might be due to the use of Dynamic AABB bounding box structures in the broad phase. When objects are far apart, the broad phase can quickly filter out potential collisions using simple BV (Bounding Volume) calculations. However, when objects are close, the BV calculations may fail, causing the system to enter the narrow phase for further calculations, which are often more time-consuming.

If you are not using a broad phase manager but your model is mesh-based, the narrow phase will still use a BVH (Bounding Volume Hierarchy) model. Therefore, when th…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@Linjackffy
Comment options

Answer selected by Linjackffy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants