Valentina Cornejo, Proyecto

De Casiopea
Proyecto teselado
TítuloProyecto teselado
Tipo de ProyectoProyecto de Taller, Proyecto de Curso
Palabras Claveproyecto final
Período2012-
AsignaturaImagen Escrita 2012,
Del CursoTaller Inicial Común 1ª y 2ª Etapa,
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 Cornejo
ProfesorHerbert Spencer
PDFArchivo:Http://wiki.ead.pucv.cl/index.php/Archivo:Archivo comprimido.zip

import processing.pdf.*;

PShape teselado;


void setup() {

 size (1040, 1040, PDF, "te_helado.pdf");
 background(255);
 teselado = loadShape("te_helado.svg");
 smooth();

}


void figura() {

 shape(teselado, 0, 0, 250, 250);
 teselado.disableStyle();
 strokeWeight(0.25); 

}


void rotar() {


 for (int y=20; y<1000; y=y+250)
 {
   for (int x=270; x<1000; x=x+250)
   {
     pushMatrix();
     translate(x, y);
     figura();
     rotate(PI/2);
     figura();
     popMatrix();
   }


 }

}


void draw() {

 rotar();
 println("Finish. Cmd+K para abrir el pdf");
 exit();

}