import .pde file (processing file) into blender

858 views Asked by At

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?

2

There are 2 answers

1
Andreas Köberle On BEST ANSWER

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.

0
d-cubed On

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.