Hello!
Does someone know any C++ library / interface to handle 3d-model data in common formats (.obj, .3ds, .ply, ...)?
There are some libraries that I can find, like lib3ds
or libobj
, but if
I want to handle different object formats, I would really need to get used to API of them all and write a bunch of my own wrappers so that my code doesn't turn into a mess.
So, I'm interested if there are some alternatives (even commercial), but which act like a swiss knife
for a big army of different 3d model formats?
Thank you.