Valentina Villegas 100 lineas + mouse

De Casiopea


TítuloValentina Villegas 100 lineas + mouse
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 2
AsignaturaTaller Inicial 1ª y 2ª Etapa, Taller Inicial Común 1ª y 2ª Etapa,
Del Curso1º Diseño 2012, Imagen 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)Valentina Villegas
ProfesorHerbert Spencer

void setup() {

 size(700,700);
 background (130,215,255);

}

int v,z;

void draw () {

}


void mouseDragged(){

 for (v=0; v<100; v=v+1)
 {
  stroke (v*2.55);
  line (350-(v*3.5),10+(v*7),351+(v*3.5),10+ (v*7));
 }
 saveFrame("valemouse100.jpg");

}

void mouseReleased(){

 background (130,215,255);

}