fake project post

not sketch

function setup() {
    createCanvas(300, 300);
    background(220, 0, 0);
   
}

function draw() {
	background(220, 0, 0)
	fill(70, 200, 100)
	stroke(0, 255, 0)
 	ellipse(mouseX, mouseY, 50, 50);
}

Leave a Reply