Tarea 12 Catalina Fairlie

De Casiopea


TítuloTarea 12 Catalina Fairlie
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 12
AsignaturaImagen Escrita 2012,
Del Curso1º Diseño 2012, Imagen 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)Catalina Fairlie
ProfesorHerbert Spencer

void setup() {

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

} void draw() {

for (int x=90; x<800;x=x+60) {
  for (int y=30;y<700;y=y+75) {
    beginShape();
    /////////////////////   
    curveVertex(x+10, y+40);  
    curveVertex(x, y+20);
    curveVertex(x+15, y+35);
    curveVertex(x+15, y+20);   
    curveVertex(x+15, y+30);   
    curveVertex(x+25, y+30);   
    ////////////////////////
    curveVertex(x+25, y+15);   
    curveVertex(x+30, y); 
    curveVertex(x+35, y+5);   
    curveVertex(x+40, y+20);   
    /////////////////////////
    curveVertex(x+30, y+25);   
    curveVertex(x+30, 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+25, y+45);
    curveVertex(x+15, y+45);
    curveVertex(x+15, y+45);
    //////////////////////////
    
    
    endShape(CLOSE);
  }
}

}