Trinidad Valenzuela proyecto final IE

De Casiopea

Archivo:Trinidad valenzuelafinal.zip


TítuloTrinidad Valenzuela proyecto final IE2012
Tipo de ProyectoProyecto de Taller, Proyecto de Curso
Palabras Claveproyecto final
Período2012-
AsignaturaImagen Escrita 2012,
Del CursoImagen Escrita 2012,
CarrerasArquitectura, Diseñ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)Trinidad Valenzuela
ProfesorHerbert Spencer

import processing.pdf.*;

PShape s;

void setup() {

 s = loadShape("Teselacion5.svg");
 size(1000, 1000, PDF, "Teselación5.pdf");

}

void draw() {

 background(255);
 shape(s, 0, 0, 1000, 1000);
 exit();

}