Proyecto Final Martin Araneda

De Casiopea

Archivo:Martin.pdf


TítuloProyecto Final Martin Araneda
Tipo de ProyectoProyecto de Curso
Palabras Claveproyecto final
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

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

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

}

void draw() {


 for (float x=60;x<900;x=x+50) { 
   for (float y=100;y<900; y=y+70) {
     pushMatrix () ;
     translate (x,y) ;
     cambio();
     popMatrix ();


     println("listo");
     exit();
    
     
   }
 }

} void rallador (){

 beginShape();

noFill();

     curveVertex (0, 0);
     curveVertex (0,  1);
     curveVertex ( 45,  40);
     curveVertex ( 35,  35);
     curveVertex ( 35,  60);
   
     curveVertex ( 20, 0);
     
     endShape(CLOSE);

} void cambio () {

 pushMatrix () ;
 rotate(45);
 rallador();
 
 rotate (135) ; 
 rallador () ;
 popMatrix () ; }