new post

sketch

//Soyun Kim

function setup() { 
    createCanvas(300, 300); //dimension
    background('red'); //can use color slider or photoshop to get the information about the color. w3schools.com
}

function draw() {
   ellipse(150,150,100,70); //ellipse(x,y,w,h)
}

Leave a Reply