shaimaa
shaimaa

Reputation: 37

import .pde file (processing file) into blender

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?

Upvotes: 0

Views: 871

Answers (2)

d-cubed
d-cubed

Reputation: 1112

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.

Upvotes: 0

Andreas Köberle
Andreas Köberle

Reputation: 110972

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.

Upvotes: 0

Related Questions