Project Week 1 – Vivek Rao

vivekrao

function setup(){
	createCanvas(300,300);
	background(240);
}
function draw(){
	var radius = 1/3*width; 
	fill("lightblue");
	noStroke();
	ellipse(width/2, height/2, radius, radius)
}

Leave a Reply