views:

186

answers:

1

How can I load a 3-d Blender model into the Processing environment?

+3  A: 

I can't seem to find a plugin specifically for Processing, but since Processing can do OpenGL, you can just use any model loader for Java that can render to OpenGL.

The OBJ file format is probably most convenient; Blender can export to OBJ. Here is an OBJ loader that can be used with Processing. Here is a JOGL renderer based on that loader.

Thomas