Update updated

This commit is contained in:
Lev
2021-04-17 16:48:53 -05:00
parent b84788f99a
commit d8549f4ab7

View File

@ -1,11 +1,10 @@
function setup() { function setup() {
createCanvas(900, 600); createCanvas(900, 600);
background(0); background(0);
} }
function draw() function draw() {
{ background(0);
background(0); fill(255);
fill(255); ellipse(mouseX, mouseY, 255);
ellipse(mouseX, mouseY, 255);
} }