Ilanit Hirnheimer: Imagen Escrita - Tarea 2.2
De Casiopea
Título | Ilanit Hirnheimer: Imagen Escrita: Tarea 2.2: 100 Líneas |
---|---|
Tipo de Proyecto | Proyecto de Curso |
Palabras Clave | Tarea 2 |
Del Curso | Imagen Escrita 2012, |
Carreras | Diseñ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) | Ilanit Hirnheimer |
Profesor | Herbert Spencer |
//lineas realizadas con el comando For, paro que responden al movimiento del mouse.
void setup() {
size(700,700); background(350, 20, 200); smooth();
}
void draw() { for (float i = 0; i < 600; i = i+12) { stroke (255);
line (mouseX, mouseY, i, i); stroke (0); line (i-100, i+100, mouseX , mouseY);
}
}