Files
processing4/java/test/resources/expressionsizevar.pde
A Samuel Pottinger 8d6d942c12 Fix tests.
2022-11-27 19:21:52 +00:00

16 lines
227 B
Plaintext

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