xxxxxxxxxx
15
function setup() {
createCanvas(400, 400); // draws canvas
rectMode(CENTER); // rect drawn according
// to x,y loc of middle of rect
}
function draw() {
background(220); // light gray
fill(0, 0, 255);
rect(200, 200, 100, 100);
//fill(255,192,203); RGB values
fill("pink"); // CSS defined colors work
ellipse(200, 200, 50, 50);
}