fake project post

not sketch

function setup() {
    createCanvas(500, 500);
    background(220, 0, 0);
    ellipse(250, 250, 50, 50)
}

function draw() {
	fill(150, 85, 100, 40)
	stroke (230, 100, 100)
    ellipse(mouseX, mouseY, 100,200)
}

Leave a Reply