Collision Detection Between Two Meshes While Ignoring Shared Border Edges #4214
Unanswered
Gihong-Yim
asked this question in
Q&A
Replies: 1 comment
-
Hello! Easiest way to check is to use this function: MeshLib/source/MRMesh/MRMeshCollide.h Lines 14 to 20 in 6ff8795 bool colliding = !findCollidingTriangles( meshA, meshB, nullptr, true ).empty(); or on python colliding = len( meshlib.mrmeshpy.findCollidingTriangles( meshA, meshB, None, True ) ) > 0; |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I need a function to check whether two meshes are colliding. However, the two meshes may have nearly identical edges at the border, and I do not want this to be considered a collision.
Beta Was this translation helpful? Give feedback.
All reactions