Francisca Rojas: Proyeceto Final

De Casiopea
Francisca Rojas: Proyecto Final


TítuloFrancisca Rojas: Proyecto Final
Tipo de ProyectoProyecto de Taller
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)Francisca Rojas
ProfesorHerbert Spencer

Medio:Francisca Rojas Proyecto Final.rar

import processing.pdf.*;

PShape s;

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

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