//Exercise 1 : Draw one line and one dot
//In this exercise we were given the parameters to make a
//composition using only one line and one dot. To me it
//seemed that the most interesting part of the assignment
//was deciding in which capacity to use each element. I felt
//that there was more freedom given with the line aspect of
//the piece, and that it was more of a clever decision as to
//how to utilize the dot. I ultimately decided to use the line
//to make the expressive form of an animal (in this case a
//flamingo), and to use the dot to naturally be its eye.
size(400,400);
background(0);
//Pink Line
stroke(191,78,81);
strokeWeight(2);
smooth();
noFill();
beginShape();
vertex(183,400);
bezierVertex(183,396,185,302,182,296);
bezierVertex(179,294,184,290,186,286);
vertex(191,223);
vertex(187,202);
bezierVertex(187,199,182,196,180,196);
bezierVertex(165,198,141,189,137,160);
bezierVertex(133,144,146,126,172,123);
vertex(174,130);
bezierVertex(175,120,172,106,166,99);
bezierVertex(160,91,155,54,168,42);
bezierVertex(180,29,200,21,204,48);
bezierVertex(199,46,193,48,193,48);
bezierVertex(190,50,193,56,192,58);
bezierVertex(193,56,195,52,194,51);
bezierVertex(193,49,203,50,205,50);
vertex(211,77);
bezierVertex(211,85,201,95,196,95);
bezierVertex(197,80,203,76,208,77);
bezierVertex(206,75,200,75,196,78);
vertex(195,65);
bezierVertex(193,64,188,55,188,54);
bezierVertex(185,46,178,43,171,59);
bezierVertex(167,75,175,88,178,93);
bezierVertex(185,102,197,125,193,148);
vertex(194,127);
bezierVertex(210,128,232,141,237,161);
bezierVertex(244,168,249,185,249,193);
vertex(246,235);
bezierVertex(244,235,241,224,241,222);
bezierVertex(242,215,240,204,235,198);
vertex(196,235);
bezierVertex(192,238,186,261,186,266);
vertex(176,278);
endShape();
//Blue Dot
noStroke();
fill(0,160,198);
ellipse(195,45,4,4);
Exercise 01: Draw one line and one dot. Set the relation between them and the frame based on an idea. Explain this idea as a comment at the top of your code.