Camila Saavedra: proyecto final

De Casiopea

Archivo:Camila Saavedra.pdf


TítuloCamila Saavedra: proyecto final
Tipo de ProyectoProyecto de Taller
Palabras Claveproyecto final
AsignaturaImagen Escrita 2012,
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)Camila Saavedra
ProfesorHerbert Spencer
 
import processing.pdf.*;

PShape s;

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

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