Catalina Angulo: mouse 10 lineas

De Casiopea
Catalina Angulo: mouse 10 lineas


TítuloCatalina Angulo: mouse 10 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 lineas=0;

void draw() { if(lineas<=10){ line(lineas*8,lineas*32,mouseX,mouseY); lineas=lineas+1; } }