Physic Engine

Started by
15 comments, last by GameDev.net 18 years, 4 months ago
Hi, does anybody know a Physic Engine like tokamak, but open source? Thx for your help.
Advertisement
ODE?
Open Dynamics Engine (ODE) is pretty good! Even used in some commercial games ^^

EDIT: curse you Kwizatz!! ^_^
[ ThumbView: Adds thumbnail support for DDS, PCX, TGA and 16 other imagetypes for Windows XP Explorer. ] [ Chocolate peanuts: Brazilian recipe for home made chocolate covered peanuts. Pure coding pleasure. ]
Open Dynamics Engine does!
But It doesn't support Trimesh-Trimesh Collision.
"Technocracy Rules With Supremacy" visit: http://gimpact.sourceforge.net
Sorry mates ask google.de before ask dump questions.

A look at sourceforge.net.

Sorry, damn of course ODE :(

Sorry
It does supports trimesh collision through a extension, and it's included in the package...
[ ThumbView: Adds thumbnail support for DDS, PCX, TGA and 16 other imagetypes for Windows XP Explorer. ] [ Chocolate peanuts: Brazilian recipe for home made chocolate covered peanuts. Pure coding pleasure. ]
Yeah, ODE has some code that does Trimesh Collision, but It works good?
I don't think so. for example, try the rabbits demo on the moving trimesh tutorial.
"Technocracy Rules With Supremacy" visit: http://gimpact.sourceforge.net
There isn't any physics engine out there supporting general tri mesh to tri mesh collision.
Expect for ODE but we all know what that is.
The best you can do is a course approximation of the geometry by placing convex hulls.

General triangular mesh intersection is a well-understood problem in computational geometry, however this is not sufficient for contact generation.

For example using intersection routines it is possible to calculate contacts but is also possible that those contacts are positions is such way that the generates an ill condition formulization of the contact constraint matrix. That is when two or more contacts are different but each one can be expressed as a linear combination of the others.

Example of that is a box hitting a plane edge on, in general you only need two contacts one each extreme, but if for example you get a contact in between, then the dynamics phase will have a very difficult time figuring out that contact is not essential to the calculation of the resting forces.

I guess this is why not physics engine maker take such risk. In general the implementer only go for what is safe.
Quote:Original post by Anonymous Poster
There isn't any physics engine out there supporting general tri mesh to tri mesh collision.


Of course there is.

Quote:Original post by MrRowl
Quote:Original post by Anonymous Poster
There isn't any physics engine out there supporting general tri mesh to tri mesh collision.


Of course there is.


Novodex does...
--m_nPostCount++

This topic is closed to new replies.

Advertisement