Donny Ahumada ∞ lineas
De Casiopea
Título | ∞ Lines and right mouse button clean |
---|---|
Tipo de Proyecto | Proyecto de Curso |
Palabras Clave | tarea 2 |
Asignatura | Taller Inicial 1ª y 2ª Etapa, Taller Inicial Común 1ª y 2ª Etapa, |
Del Curso | 1º Diseño 2012, Imagen Escrita 2012, |
Carreras | Diseñ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 |
Profesor | Herbert 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);
}