fake project post

not sketch

function setup() {
	createCanvas(200,200);
	

}

function draw() {
	background(120, 150, 240);
	
	fill(255,200,200);
	noStroke();
	ellipse(mouseX,mouseY, 50, 50)
}

Leave a Reply