Ilanit Hirnheimer: Imagen Escrita - Tarea 2.1
De Casiopea
Título | Ilanit Hirnheimer: Imagen Escrita: Tarea 2.1: 10 Líneas |
---|---|
Tipo de Proyecto | Proyecto de Curso |
Palabras Clave | Tarea 1 |
Período | 2012- |
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 comendo For, pero que responden al movumiento del mouse
void setup() {
size(700,700); background(350, 20, 100); smooth();
}
void draw() { for (int i = 5; i < 700; i = i+70) { line(20, 20, 80, i); stroke(0, 500, 20); line(i, mouseX, mouseY, i);
} }