-
-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy pathWriteSVG.java
More file actions
35 lines (25 loc) · 750 Bytes
/
WriteSVG.java
File metadata and controls
35 lines (25 loc) · 750 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 settings() {
size(600, 400, SVG, desktopPath("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" });
}
}