Fake project post

blue circleeee

function setup() {
    createCanvas(200, 200);
    background(220, 0, 0);

}   
   
function draw() {
    //inside color
    fill(100, 20, 255);
  ellipse(mouseX, mouseY, 50, 50);
}

Leave a Reply