println("Basic Drawing");
size(600, 400);
background(255, 204, 204);
println("Rug");
fill(230, 230, 250);
noStroke();
ellipse(240, 260, 340, 200);
println("Rug2");
fill(173, 216, 230);
ellipse(240, 260, 310, 170);
println("Rug3");
fill(240,230,140);
ellipse(240, 260, 240, 90);
println("1. Ellipse");
ellipseMode (CENTER);
noStroke();
fill(169, 169, 169);
ellipse(250, 200, 250, 200);
println("2. Eye 1");
strokeWeight(13);
stroke(0, 0, 0);
point(240, 250);
println("3. Eye 2");
strokeWeight(13);
stroke(0, 0, 0);
point(160, 240);
println("4. Mouth 1");
strokeWeight(3);
line(210, 220, 200, 230);
println("5. Mouth 2");
strokeWeight(3);
line(190, 220, 200, 230);
println("6. Mouth 3");
strokeWeight(3);
line(200, 230, 200, 234);
println("7. Ear 1");
strokeWeight(13);
stroke(169, 169, 169);
triangle(300, 290, 260, 300, 290, 320);
println("8. Ear 2");
strokeWeight(3);
triangle(140, 249, 182, 285, 130, 295);
println("9. Whisker 1");
strokeWeight(2);
stroke(0, 0, 0);
noFill();
arc(125, 200, 50, 30, HALF_PI, PI);
println("10. Whisker 2");
strokeWeight(2);
noFill();
arc(133, 215, 50, 30, HALF_PI, PI);
println("11. Whisker 3");
strokeWeight(2);
noFill();
arc(300, 215, 60, 30, 0, HALF_PI);
println("12. Whisker 4");
strokeWeight(2);
noFill();
arc(300, 230, 60, 30, 0, HALF_PI);
println("13. Tail");
fill(169, 169, 169);
strokeWeight(1);
stroke(169, 169, 169);
ellipse(380, 230, 70, 25);
println("14. Foot 1");
fill(169, 169, 169);
ellipse(180, 110, 20, 50);
println("15. Foot 2");
fill(169, 169, 169);
ellipse(300, 110, 20, 50);
println("16. Foot 3");
fill(169, 169, 169);
ellipse(330, 120, 20, 50);
println("17. Foot 4");
fill(169, 169, 169);
ellipse(225, 105, 20, 50);
loadFont("AppleCasual-200.vlw");
fill(255, 255, 255);
textSize(50);
text("HELP...", 400, 150);