Proyecto final - Daniela Gajardo

De Casiopea
Proyecto final - Daniela Gajardo


TítuloProyecto final - Daniela Gajardo
Tipo de ProyectoProyecto de Taller
Palabras Claveproyecto final
Período2012-
AsignaturaTaller Inicial 1ª y 2ª Etapa,
Del CursoImagen Escrita 2012,
CarrerasArquitectura
Alumno(s)Daniela Gajardo
ProfesorHerbert Spencer

Medio:Daniela Gajardo.pdf

Medio:Processing.rar


import processing.pdf.*;

PShape s;

void setup() {
  s = loadShape("Daniela_Gajardo.svg");
  size(1000, 1000, PDF, "Daniela_Gajardo.pdf");
}

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