Sebastian Aguilera: Proyecto Final

De Casiopea


TítuloSebastian Aguilera: Proyecto Final
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)Sebastián Aguilera
ProfesorHerbert Spencer

Medio:Sebastian Aguilera Proyecto Final.rar

import processing.pdf.*;

PShape s;

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

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