From 1053e93e550fa925e5d53baf15318603961796a7 Mon Sep 17 00:00:00 2001 From: KuramotoYu <23e1276@andrew.ac.jp> Date: Fri, 25 Oct 2024 10:47:18 +0900 Subject: [PATCH] add ellipse --- sketch.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sketch.js b/sketch.js index 9a7ab33..bc450f8 100644 --- a/sketch.js +++ b/sketch.js @@ -3,5 +3,6 @@ function setup() { } function draw() { - background(128); + background(10,120,100); + ellipse(200, 0, 100, 120); }