Valentina Olivares : Proyecto final

De Casiopea


TítuloValentina Olivares : proyecto final
Tipo de ProyectoProyecto de Curso
Palabras Claveproyecto final, tarea12
Período2012-
AsignaturaImagen Escrita 2012,
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)Valentina Olivares
ProfesorHerbert Spencer

// el proyecto consistía en crear una teselación usando la función vertex ________________________________________________________________________________________

import processing.pdf.*; void setup() {

 size (1000, 1000,PDF,"teselacion2.pdf"); 
 background(255);
 smooth();
 fill  (0);

}

void draw() {

 for (float x=10;x<1000;x=x+60) { 
   for (float y=10;y<1000; y=y+50) {
     beginShape();


     curveVertex (x - 10, y + 10);
     curveVertex (x - 40, y - 10);
     curveVertex (x, y + 80);
     curveVertex (x,y);
     curveVertex (x + 30, y + 10);
     curveVertex (x,y);
     curveVertex (x + 30, y);
     curveVertex (x + 20, y - 15);
     curveVertex (x, y + 40);
     curveVertex (x - 30, y + 10);
     curveVertex (x+10,y);
     endShape(CLOSE);
   }
 }

}