Are there any libraries that will let me view a 3D model using python? Something simple like providing a set of vertices, faces, normals, and texture coords and then it'll create a window and then draw it?

I've asked around and people straight out say I should use blender rather than "re-inventing the wheel", but I just want to be able to display a model since I have the information required to do so.

EDIT: good suggestions. I'll have to take some time to look at each. Here's another to add to the list: Soya3D

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

You could try Panda3d

There is a cheatsheet here which broadly describes a file format understandable by Panda3D which contains what you describe.

link|improve this answer
feedback

Try PyOpenGL. Here are some examples.

link|improve this answer
feedback

You can use a combination of existing libraries to achieve your aims, for example pyglet or PyOpenGl and Open Asset Import Library, which has functioning Python bindings. (Disclaimer: i'm affliated with the latter project).

Other than that, you can perhaps use Blender's Python-based importer scripts and re-write them according to your needs to get your 3D data, then use it with one of the aforementioned OpenGl libraries for Python.

link|improve this answer
The open asset import library is nice. – Keikoku Jul 11 '11 at 13:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.