Tomas Gesell 100 lineas+mouse

De Casiopea


Título100 lineas + mouse
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 2
Período2012-
AsignaturaTaller Inicial Común 1ª y 2ª Etapa,
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)Tomás Gesell
ProfesorHerbert Spencer

void setup() {

size(700, 700); background(1); stroke (255);

}

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

 line(mouseX, i, 300, 2);

line (mouseX, i, mouseY, 30);}


}