The Collision OccViewer.Collision module provides detecting and visualizing collisions between 3D objects. It enhances the functionality of interactive 3D applications by identifying intersections or overlaps between geometries, making it invaluable for simulations, design validation, and real-time interaction. Performs collision checks between two groups of 3D objects, represented by mesh ID lists. Operates asynchronously to ensure smooth user experience and non-blocking application performance. Highlights collisions using customizable contour colors to clearly display areas of overlap or interference.
viewer?.collisionManager
.checkCollisionAsync(
CollisionId,
objectArray1,
objectArray2
)
.then((theCollided) => {
if (theCollided) {}
else {}
})
.catch((theError) => {
console.log('Error on collision calculation.');
console.log(theError);
});