diff --git a/sketch.js b/sketch.js index 2207640..a86e55d 100644 --- a/sketch.js +++ b/sketch.js @@ -1,8 +1,18 @@ +let dia=40; +let y=80; function setup() { - createCanvas(400, 400); -} + createCanvas(400, 200); + background(220); + noLoop(); + } + + function draw() { + fill(128, 128, 0); + noStroke(); -function draw() { - background(254,0,254); - ellipse(200,295,190,200); -} \ No newline at end of file + circle(100,y,dia) + + y=150; + circle(200, y,dia); + circle(300, y,dia); + } \ No newline at end of file