Catalina Angulo: mouse 100 lineas

De Casiopea
Catalina Angulo: mouse 100 lineas


TítuloCatalina Angulo: mouse 100 lineas
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 2
AsignaturaImagen Escrita 2012,
Del CursoImagen Escrita 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)Catalina Angulo
ProfesorHerbert Spencer

void setup() {

size(700,700); stroke(#1E79A2); background(#000508); smooth(); frameRate(1);

} int contador=0;

void draw() { if(contador<=10){ for (int i = 0; i < 400; i = i+40) { line(mouseX, i, i, mouseY); } contador++; } }