Ramón Pizarro Briceño; tesela

De Casiopea
{{{Título}}}


Título
Tipo de ProyectoProyecto de Taller
Palabras Claveproyecto final
Período2012-
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)Ramon Pizarro
ProfesorHerbert Spencer

// La idea del trabajo final para Imagen Escrita consiste en realizar una teselación en la la aplicación Escher Web Sketch. La unión de las líneas genera cierta forma que pareciese ver a 3 personas con una misma cabeza //


import processing.pdf.*;

PShape s;

void setup() {

 s = loadShape("Ramón_Pizarro.svg");
 size(1000, 1000, PDF, "Ramón_Pizarro.pdf");

}

void draw() {

 background(255);
 shape(s, 0, 0, 1000, 1000);
 println("Listo. Presione Ctrl+k para ver el pdf");
 exit();

}