Exporting to dxf or pdf
in
Core Library Questions
•
8 months ago
I am very new at this and can't seem to export my file to dxf or pdf. I know im supposed to import the pdf or dxf code at the beginning of the code but the rest of it has me stumped. I would really appreciate any help with this.
- ArrayList history = new ArrayList();
- float distthresh = 60;
- void setup(){
- size(900,600);
- background(255);
- stroke(0,50);
- smooth();
- }
- void draw(){
- }
- void mouseDragged(){
- PVector d = new PVector(mouseX,mouseY,0);
- history.add(0,d);
- for (int p=0; p<history.size(); p++){
- PVector v = (PVector) history.get(p);
- float joinchance = p/history.size() + d.dist(v)/distthresh;
- if (joinchance < random(0.4)) line(d.x,d.y,v.x,v.y);
- }
- }
- void keyPressed(){
- if (key == ' ') {
- background(255);
- history.clear();
- }
- }
1