fake project post

not sketch

function setup() {
    createCanvas(200, 200);
    background(220, 70, 53);
}

function draw() {
	fill(223, 45, 129);
	stroke(45, 20, 78);
	ellipse(mouseX, mouseY, 50, 50);
}

Leave a Reply