add ellipse

This commit is contained in:
2024-10-25 10:47:18 +09:00
parent ae8ec4e6ec
commit 1053e93e55

View File

@@ -3,5 +3,6 @@ function setup() {
} }
function draw() { function draw() {
background(128); background(10,120,100);
ellipse(200, 0, 100, 120);
} }