Maximiliano Martínez: Autorretrato
De Casiopea
Título | Maximiliano Martínez: Autorretrato |
---|---|
Tipo de Proyecto | Proyecto de Taller |
Palabras Clave | tarea 1 |
Período | 2013-2013 |
Asignatura | Imagen Escrita, |
Del Curso | Imagen Escrita 2013 - DIS, |
Carreras | Diseño Gráfico"Diseño Gráfico" is not in the list (Arquitectura, Diseño, Magíster, Otra) of allowed values for the "Carreras Relacionadas" property., Diseño Industrial"Diseño Industrial" is not in the list (Arquitectura, Diseño, Magíster, Otra) of allowed values for the "Carreras Relacionadas" property. |
Alumno(s) | Maximiliano Martínez |
Profesor | Herbert Spencer |
void setup() { size(500, 500); } void draw() { background(150); noStroke(); smooth(#958686); fill(#E09C9C); beginShape(); // Cuello { curveVertex(175,40); curveVertex(175,125); curveVertex(175,225); curveVertex(150,250); curveVertex(250,250); curveVertex(225,225); curveVertex(225,125); curveVertex(225,40); } endShape(CLOSE); fill(#E0BEBE); ellipse(200,137.5,125,125); beginShape(); //cabeza { curveVertex(125,80); curveVertex(150,175); curveVertex(200,225); curveVertex(250,175); curveVertex(275,80); } endShape(CLOSE); beginShape(); //orejas fill(#E0BEBE); { curveVertex(120,100); curveVertex(120,125); curveVertex(125,150); curveVertex(275,150); curveVertex(280,125); curveVertex(280,100); } endShape(CLOSE); beginShape(); //ojo izquierdo fill(255); stroke(0); { vertex(175,110); vertex(150,125); vertex(175,135); vertex(195,125); } endShape(CLOSE); beginShape(); //ojo derecho fill(255); stroke(0); { vertex(225,110); vertex(205,125); vertex(225,135); vertex(250,125); } endShape(CLOSE); beginShape(); //pupila izquierda fill(#553B3B); noStroke(); { ellipse(175,125,10,10); } endShape(CLOSE); beginShape(); //negro del ojo izquierdo fill(0); noStroke(); { ellipse(175,125,3,3); } endShape(CLOSE); beginShape(); //pupila derecha fill(#553B3B); noStroke(); { ellipse(225,125,10,10); } endShape(CLOSE); beginShape(); //negro del ojo derecho fill(0); noStroke(); { ellipse(225,125,3,3); } endShape(CLOSE); beginShape(); //nariz fill(#E0BEBE); stroke(0); smooth(255); { vertex(195,125); vertex(195,160); vertex(185,170); vertex(190,175); vertex(195,172); vertex(200,175); vertex(205,172); vertex(210,175); vertex(215,170); vertex(205,160); vertex(205,125); } endShape(CLOSE); beginShape(); //contorno boca fill(#D39393); noStroke(); smooth(#9B2525); { vertex(195,185); vertex(183,190); vertex(200,200); vertex(217,190); vertex(205,185); } endShape(CLOSE); beginShape(); //línea de boca noFill(); stroke(#812C2C); smooth(#9B2525); { vertex(188,190); vertex(212,190); } endShape(CLOSE); beginShape(); //ceja izquierda fill(0); stroke(0); { vertex(195,90); vertex(175,90); vertex(150,110); vertex(175,100); vertex(195,100); } endShape(CLOSE); beginShape(); //ceja derecha fill(0); stroke(0); { vertex(205,90); vertex(225,90); vertex(250,110); vertex(225,100); vertex(205,100); } endShape(CLOSE); beginShape(); //barba parte 1 fill(0); stroke(0); { ellipse(200,225,35,35); } endShape(CLOSE); beginShape(); //barba parte 2 fill(0); stroke(0); { vertex(183,215); vertex(137.5,150); vertex(157, 188); vertex(183,225); } endShape(CLOSE); beginShape(); //barba parte 3 fill(0); stroke(0); { vertex(217,215); vertex(262.5,150); vertex(241, 191); vertex(217,225); } endShape(CLOSE); beginShape(); //pelo parte 1 fill(0); stroke(0); { curveVertex(139, 125); curveVertex(142, 91); curveVertex(199, 60); curveVertex(256, 92); curveVertex(262, 125); curveVertex(240, 95); curveVertex(199, 77); curveVertex(155,100); } endShape(CLOSE); beginShape(); //pelo parte 2 fill(0); stroke(0); { vertex(140, 126); vertex(170, 79); vertex(142, 92); vertex(134, 104); } endShape(CLOSE); saveFrame("Autorretrato_Martinez.jpg"); } void mousePressed(){ println("vertex("+mouseX+", "+mouseY+");"); }