mirror of
https://github.com/processing/processing4.git
synced 2026-01-30 11:51:54 +01:00
11 lines
152 B
Plaintext
11 lines
152 B
Plaintext
void setup() {
|
|
size(400, 400, P3D);
|
|
frame.setResizable(true);
|
|
}
|
|
|
|
void draw() {
|
|
background(255, 0, 0);
|
|
ellipse(width/2, height/2, 100, 50);
|
|
}
|
|
|