Maith€e Escobar: proyecto

De Casiopea

Archivo:Mai.pdf


Títuloproyecto final
Palabras Claveproyecto final
AsignaturaTaller Inicial Común 1ª y 2ª Etapa,
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)Maithé Escobar
ProfesorHerbert Spencer

import processing.pdf.*; PShape impor;

void setup() {

 size (1040, 1040, PDF, "maitheproyecto.pdf");
 background(255);
 impor = loadShape("mai.svg");
 smooth();

}

void dibujo() {

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

}

void repetir() {

 for (int y=20; y<1000; y=y+250)
 {
   for (int x=20; x<1000; x=x+250)
   {
     pushMatrix();
     translate(x, y);
     dibujo();
     popMatrix();
   }
  
 }

}

void draw() {

 repetir();
 println("Listo. Ctrl+K para ver el pdf");
 exit();

}