Ilanit Hirnheimer: Imagen Escrita - Tarea 2.1

De Casiopea
Ilanit Hirnheimer: Imagen Escrita: Tarea 2.1: 10 Líneas


TítuloIlanit Hirnheimer: Imagen Escrita: Tarea 2.1: 10 Líneas
Tipo de ProyectoProyecto de Curso
Palabras ClaveTarea 1
Período2012-
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 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);

} }