Is there a standard way to store 3D meshes to easily communicate between libraries?
Posted
by
awiebe
on Game Development
See other posts from Game Development
or by awiebe
Published on 2012-03-27T17:44:27Z
Indexed on
2012/03/27
23:44 UTC
Read the original article
Hit count: 510
In a 3D game lots of different systems need to know about geometry data, however the only way they seem to be able to agree to on in representing it by an array of triangles.
Can anyone recommend a good geometry manipulation library that will allow me to easily integrate the drawing library(OpenGL), the physics engine(Bullet), Serialization(Several 3D file formats) and my own code(objective-c++). Focus on the a representation between the drawing library and the physics engine. Also if the library can triangulate a mesh definition that would be very helpful. My code can work around what exists already.
© Game Development or respective owner