I just want to know what file formats are the most OpenGL friendly in terms of loading and displaying inanimate textured 3d objects.
|
|
I was just looking at them today. There are many formats, and it's hard to choose among them. There are a couple of questions that need to be answered before one can get to yours. What do you mean by "best"? Are you looking for something that's easy to parse? Are you looking to use 3rd party libraries? Do you want animation, textures, curves, bones, etc.?
Then there are game-engine formats, some optimized for displaying a single model (like MD2, MD3) and some for large, open areas (game map formats.) And then there are 3D editor-native formats that undoubtedly contain the most information but are also the hardest to parse. Oh, and I just stumbled across this: Blender Wiki's File format list. |
||
|
|
|
I would recommend .obj format since it is extremely simple to parse. Also, when you take lib3ds, reading .3ds files also becomes a piece of cake. |
||
|
|
|
|
I like .3ds files, they are relatively easy to read, can contain a fair amount of information, it is supported by most editors, and it's binary. But I usually use it mostly in the debugging phases of an application. A much more robust and flexible format is Collada which is human readable and can contain more or less anything you would ever need. |
||
|
|
|
|
|
||||
|
