Renata Villaseñor tarea 12.2

De Casiopea



Títulotarea 12.2
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 12
Del CursoImagen Escrita 2012,
CarrerasDiseñ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)Renata Villaseñor
ProfesorHerbert Spencer


void setup() {

 size(1000, 1000);
 background(255);
 smooth();

} void draw() {

 for (int x=50; x<900;x=x+70) {
   for (int y=50;y<900;y=y+70) {
     beginShape();


     /////////////////////   
     curveVertex(x+5, y+35);  
     curveVertex(x, y+30);
     curveVertex(x+5, y+25);
     curveVertex(x+15, y+20);   
     curveVertex(x+15, y+15);   
     curveVertex(x+20, y+15);   
     ////////////////////////
     curveVertex(x+25, y+5);   
     curveVertex(x+30, y); 
     curveVertex(x+35, y+5);   
     curveVertex(x+40, y+15);   
     /////////////////////////
     curveVertex(x+45, y+15);   
     curveVertex(x+45, y+20);
     ///////////////////////////
     curveVertex(x+55, y+25);   
     curveVertex(x+60, y+30);   
     curveVertex(x+55, y+35);
     /////////////////////////
     curveVertex(x+45, y+40);   
     curveVertex(x+45, y+45);   
     curveVertex(x+40, y+45);
     ////////////////////////////////
     curveVertex(x+35, y+55);
     curveVertex(x+30, y+60);   
     curveVertex(x+25, y+55);
     /////////////////////////
     curveVertex(x+20, y+45);
     curveVertex(x+15, y+45);
     curveVertex(x+15, y+40);
     //////////////////////////
     
     


     endShape(CLOSE);
   }
 }

}