Ilanit Hirnheimer: Imagen Escrita - Tarea 2.2

De Casiopea
Ilanit Hirnheimer: Imagen Escrita: Tarea 2.2: 100 Líneas



TítuloIlanit Hirnheimer: Imagen Escrita: Tarea 2.2: 100 Líneas
Tipo de ProyectoProyecto de Curso
Palabras ClaveTarea 2
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)Ilanit Hirnheimer
ProfesorHerbert 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);
 


} }