How to use Modelbuilder library to export a drawing to STL
in
Contributed Library Questions
•
1 year ago
Hi everyone,
We are two Art students from Brussels, we started using processing 4 month ago..can anybody help us?
We are currently working on an interactiv 3D drawing tool, here is the link to the video: http://vimeo.com/38321588
We want to export the drawing made to an stl format so that it can be print..
But there is the problem, how to do it?
We found Marius Watz’s Modelbuilder library, we think it is possible doing it by using it..maybe by creating a cylindrical form around the drawing..what do you think?
Thank you!
Here is the code that creates the line when the hand is tracked:
- if(handsTrackFlag)
- {
- pushStyle();
- stroke(0,0,0,200);
- strokeWeight(3);
- noFill();
- Iterator itr = handVecList.iterator();
- beginShape();
- while( itr.hasNext() )
- {
- PVector p = (PVector) itr.next();
- vertex(p.x,p.y,p.z);
- }
- endShape();
- popStyle();
- }
- }
1