Collision Detection for Translating & Rotating Ellipsoid

Please don't post Bullet support questions here, use the above forums instead.
chand81
Posts: 6
Joined: Thu Aug 16, 2007 7:19 am

Collision Detection for Translating & Rotating Ellipsoid

Post by chand81 »

I have successfully implemented swept ellipsoid v/s triangle test.

Now I'm looking at adding support for rotation.

How can I approach this problem? Can Conservative Advancement be applied here?
User avatar
Erwin Coumans
Site Admin
Posts: 4221
Joined: Sun Jun 26, 2005 6:43 pm
Location: California, USA

Post by Erwin Coumans »

Yes, conservative advancement can deal with rotations. This is implemented in Bullet, Catch and Fast libraries.

See also papers here:
http://graphics.ewha.ac.kr/catch/
http://graphics.ewha.ac.kr/fast/
http://www.continuousphysics.com/Bullet ... ection.pdf

As mentioned before, it is best to allow a user-definable 'allowed penetration', to deal with (close) contact situations.

It is on my long todo list to add some Bullet demo that shows how to its continuous collision detection check.

Thanks,
Erwin