mirror of
https://github.com/processing/processing4.git
synced 2026-01-26 18:01:07 +01:00
8 lines
128 B
Plaintext
8 lines
128 B
Plaintext
size(300,300, P2D);
|
|
smooth(4);
|
|
background(0);
|
|
fill(255,0,0);
|
|
ellipse(100,100,100,100);
|
|
fill(0,255,0);
|
|
ellipse(150,150,100,100);
|