Matias chacon: proyecto

De Casiopea
Revisión del 12:20 6 sep 2012 de Chacon.sb (discusión | contribs.)
(difs.) ← Revisión anterior | Revisión actual (difs.) | Revisión siguiente → (difs.)

Archivo:Matiasproyecto.pdf


Títulomatias chacon: proyecto
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)Matias Chacon
ProfesorHerbert Spencer

import processing.pdf.*; PShape impor;

void setup() {

 size (1040, 1040, PDF, "matiasproyecto.pdf");
 background(255);
 impor = loadShape("matifinal.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();

}