mirror of
https://github.com/processing/processing4.git
synced 2026-01-27 02:11:08 +01:00
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.
13 lines
141 B
Plaintext
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;
|
|
}
|