Paulina Martínez IE2012 Tarea 2: 10000 Líneas

De Casiopea


TítuloProyecto De Imagen Escrita: 10000 Lineas
Tipo de ProyectoProyecto de Taller, Proyecto de Curso
Palabras Claveimagen escrita, 10000 lineas, paulina martinez
Período2012-
AsignaturaImagen Escrita 2012,
Del CursoImagen Escrita 2012, 1º Diseño 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)Paulina Martínez
ProfesorHerbert Spencer

En esta tarea se han trabajo las lineas creadas anteriormente, incluyendo las funcion mouseX y mouseY.

void setup(){ size(1000,1000); smooth(); strokeWeight(2); }

void draw (){

 background(255);
 stroke (#2BB986);
for(int i=0; i<50000; i=i+5) {

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