Files
processing4/java/test/resources/fullscreen_export.pde
A Pottinger ece11f9345 Fix #488.
Clean up the footer writer section of the preprocessor for easier reading but also fix adding and looking for --full-screen which appears to have been left off at some point.
2022-06-21 08:34:44 -07:00

13 lines
141 B
Plaintext

int x = 0;
void setup() {
background(0);
noStroke();
fill(102);
}
void draw() {
rect(x, height*0.2, 1, height*0.6);
x = x + 2;
}