Shannon’s Test Post

sketch37.js

//Shannon Case

function setup() {
    createCanvas(200, 200); // this creates a canvas 200 pixles by 200 pixles
    background('LightGreen'); // this colors the canvas blue
}

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

Leave a Reply