tags:

views:

28

answers:

1

I would like to use .3ds models with JOGL. How can I do this? How can I import other file formats, like .max or .obj?

Thanks. I'm new to OpenGL and JOGL.

+1  A: 

I can't find the plain Javadoc (or a clean library download) for it anywhere but ModelFactory.createModel(...) in JOGLUtils will load some .3ds files.

Edit: DURP I forgot: You can render them with DisplayListRenderer which is also in JOGLUtils.

j flemm