Donny Ahumada ∞ lineas

De Casiopea
∞ Lines and right mouse button clean


Título∞ Lines and right mouse button clean
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)Donny Ahumada
ProfesorHerbert Spencer

int x, y; int q=0; int w=0;

void setup (){

 size (500,500);
 background (255);

}

void draw() {

 if (mousePressed && (mouseButton == RIGHT)){
   //saveFrame("infinitylinesmouse.jpg");
   background(255);
 }

}

void mouseDragged() {

if (mousePressed && (mouseButton == LEFT))
{
  x=mouseX;
  y=mouseY;
}
 line (x,y,q,w);

}