Reputation: 37
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
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
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