Files
processing4/java/test/resources/expressionsize.pde
2022-11-27 19:04:56 +00:00

15 lines
200 B
Plaintext

import processing.pdf.*;
void setup() {
size(400*2, 4e2/2);
}
void draw() {
// Draw something good here
line(0, 0, width/2, height);
// Exit the program
println("Finished.");
exit();
}