Leninn G 1° ARQ 2012 100 lineas-mouse
De Casiopea
Título | 100 lineas |
---|---|
Tipo de Proyecto | Proyecto de Curso |
Palabras Clave | tarea 2 |
Período | 2012-2012 |
Asignatura | Imagen Escrita 2012, |
Del Curso | Imagen Escrita 2012, |
Carreras | Arquitectura |
Alumno(s) | Leninn Gustainsson |
Profesor | Herbert Spencer |
void setup() {
size(700,700); smooth(); }
void draw() {
background(999999); stroke(#45818e); for (int e=0; e<25; e++) { line(width-mouseX+(50*e),height-mouseY+(50*e),width-mouseY-(50*e),height-mouseX-(50*e)); line(width-mouseY-(50*e),height-mouseY+(50*e),width-mouseX+(50*e),height-mouseX-(50*e)); line(width-mouseX+(50*e),height-mouseY+(50*e),width-mouseY-(50*e),height-mouseX-(50*e)); line(width-mouseY-(100*e),height-mouseY+(500*e),width-mouseX+(100*e),height-mouseX-(500*e));
}saveFrame ("estellar1.jpg"); }