forked from processing/processing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWriteSVG.java
More file actions
35 lines (25 loc) · 767 Bytes
/
Copy pathWriteSVG.java
File metadata and controls
35 lines (25 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import processing.core.PApplet;
// TODO This is code for testing; remove before final release
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" });
}
}