fake project post

not sketch

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

function draw() {
	background(220, 0, 0, 0.5)
	//nside color
	fill(220, 230, 100);
	//border color
	stroke(0, 255, 200)
	ellipse(mouseX, mouseY, 50, 50)
}

Leave a Reply