I'm looking for an easy to use 3D scene renderer for Python. All I'm looking for is to be able to:

  • Load a 3D scene model
  • Render it using an orthographic camera
  • Export the image so I can perform analysis

So far the software I've found is either too low-level (like basic OpenGL bindings) or too complex (like Ogre). Any advice?

link|improve this question
What file type of scene/model? – a sandwhich Dec 23 '10 at 22:05
The scene needs to consist of a just a handful of different types of simple objects like blocks, cylinders and spheres (representing buildings and trees). Any file format would do. – mkrause Dec 23 '10 at 22:14
1  
What about just generating input for some stand-alone command-line renderer (eg: Povray) and then reading in its output? – Laurence Gonsalves Dec 23 '10 at 22:21
That's a good idea, perhaps I'm thinking too complex. :) – mkrause Dec 23 '10 at 22:29
What's wrong with Ogre anyway? You don't have to use the full complexity. – Gareth Rees Dec 23 '10 at 23:16
feedback

1 Answer

up vote 3 down vote accepted

Really depends exactly what you want to accomplish. How complex is your scene? What sort of render quality are you after? Do you need real-time animation, or are rendered stills good enough?

First-rate, full game engines (have been used for commercial games)

Less popular 3d engines, new or beta: YMMV.

Low-level OpenGL interfaces - more control, more for you to do yourself

Non-realtime interfaces

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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