Valentina Cornejo, tarea 2

De Casiopea
100 líneas


Título100 líneas
Tipo de ProyectoProyecto de Curso
Período2012-
AsignaturaImagen Escrita 2012,
Del CursoTaller Inicial Común 1ª y 2ª Etapa,
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)Valentina Cornejo
ProfesorHerbert Spencer

void setup() {

size(600,600);
smooth();

}

void draw() {

background(#F6CED8);
stroke(#A901DB);
for (int n=4; n<500; n=n+5) {
line(width-mouseX+(n),mouseY,mouseX,height-mouseY-(n));
  line(width-mouseX-(n),mouseY,mouseX,height-mouseY+(n));

} saveFrame("valentina_cornejo.jpg"); }