xxxxxxxxxx
30
function setup() {
createCanvas(400, 400);
}
function draw() {
background(135, 196, 230);
// no borders
noStroke();
fill(100, 300, 500);
rect(75, 50, 250, 260);
ellipse(80, 150, 55, 70);
ellipse(320, 150, 55, 70);
fill(255, 255, 255, 200);
circle(200, 130, 100);
fill(0, 0, 139, 230);
circle(220, 120, 30);
fill(0, 0, 0);
rect(100, 210, 200, 50);
fill(255, 255, 255);
square(240, 210, 20);
square(140, 210, 20);
triangle(160, 260, 180, 260, 170, 250);
triangle(190, 260, 210, 260, 200, 250);
triangle(220, 260, 240, 260, 230, 250);
}
/* to do lots of lines of comments use
this instead of //
*/