Carla manriquez - 10000 lineas 2012
De Casiopea
Título | Carla Manriquez - 10000 lineas 2012 |
---|---|
Tipo de Proyecto | Proyecto de Curso |
Palabras Clave | tarea 1 |
Período | 2012- |
Asignatura | Imagen Escrita 2012, |
Del Curso | Imagen Escrita 2012, |
Carreras | Arquitectura |
Alumno(s) | Carla Manriquez |
void setup() { size(700,700); background(255); smooth(); }
void draw(){
for (int i=0; i < 100000; i = i+20) { stroke(200); line(i,0,0,width); } for (int i=0; i < 100000; i = i+50) { stroke(64,155,227); line(i,0,0,width); }
for (int i=0; i < 100000; i = i+100) {
stroke(113,26,185); line(i,0,0,width); } for (int i=0; i < 100000; i = i+80) { stroke(26,185,165); line(i,0,0,width); } for (int i=0; i < 100000; i = i+200) { stroke(247,62,192); line(i,0,0,width); } for (int i=0; i < 100000; i = i+400) { stroke(215,155,240); line(i,0,0,width); }
}