0

I have a "Processing" file (written in "Processing" i.e. a pde file) which has a model and its transformations such as open, close, scale, rotate ..

How can I import this file into Blender 2.49?

d-cubed
  • 1,034
  • 5
  • 30
  • 58
shaimaa
  • 37
  • 1
  • 3
  • 9

2 Answers2

0

Use the modelbuilder library and UGeometry.

You'll import modelbuilder e.g. :

import unlekker.util.*;
import unlekker.modelbuilder.*;
import unlekker.modelbuilder.filter.*;
import ec.util.*;

Load UGeometry:

UNav3D nav;
UGeometry model;

And write with the UGeometry.writeSTL method.

d-cubed
  • 1,034
  • 5
  • 30
  • 58
0

I dont think so. You have to create your model in processing and then export it with a additional library in a format blender can import. There is a lib for exporting dxf files and i guess toxicLib has also the possibility to export 3d files as stl files.

Andreas Köberle
  • 106,652
  • 57
  • 273
  • 297
  • So if i create a model with its movements (for example) using processing and retype the original code as the exmple shown in http://processing.org/reference/libraries/dxf/index.html for using dxf library . now is it possible to import it from blender ? – shaimaa Sep 15 '11 at 22:22