simple svg exporter

This commit is contained in:
Ben Fry
2015-05-16 12:36:02 -04:00
parent 2e8187d9c4
commit 4ab42a0fb3
6 changed files with 797 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
import processing.core.PApplet;
public class WriteSVG extends PApplet {
public String sketchRenderer() {
return "processing.svg.PGraphicsSVG";
}
public String sketchOutputPath() {
return "/Users/fry/Desktop/frame-####.svg";
}
public void setup() {
size(600, 400, "processing.svg.PGraphicsSVG", "/Users/fry/Desktop/frame-####.svg");
// frameRate(1);
}
public void draw() {
background(random(255));
stroke(random(255));
strokeWeight(20);
line(random(width), random(height), random(width), random(height));
if (frameCount == 5) exit();
// exit();
}
static public void main(String[] args) {
PApplet.main(new String[] { "WriteSVG" });
}
}