Donny 1000 lineas

De Casiopea
Thousand colored vortex lines


TítuloThousand colored vortex lines
Tipo de ProyectoProyecto de Taller, Proyecto de Curso
Palabras Clavetarea 1
AsignaturaTaller Inicial Común 1ª y 2ª Etapa,
Del CursoImagen Escrita 2012, 1º Diseño 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)Donny Ahumada

void setup(){

 size (700, 700);

}

void draw () {

 background(200);

for (int i = 0; i < 1000; i++) {

 float r = random(700);
 float s = random(700);
 float x = random(255);
 float y = random(255);
 float z = random(255);
 stroke (x,y,z);
 line (s,r,350,350);

} //noLoop(); }