()
| 21 | } |
| 22 | |
| 23 | public void draw() { |
| 24 | background(random(255)); |
| 25 | stroke(random(255)); |
| 26 | strokeWeight(20); |
| 27 | line(random(width), random(height), random(width), random(height)); |
| 28 | if (frameCount == 5) exit(); |
| 29 | // exit(); |
| 30 | } |
| 31 | |
| 32 | static public void main(String[] args) { |
| 33 | PApplet.main(new String[] { "WriteSVG" }); |
nothing calls this directly
no test coverage detected