Return to Snippet

Revision: 27357
at June 3, 2010 07:47 by Homitsu


Updated Code
void setup(){
size(200,200);
background(255);
}
void draw(){//nulla da dichiarare
}
void mousePressed(){
fill(233,233,0);
rect(mouseX,mouseY,mouseX,mouseY);
}
void keyPressed(){
background(255); //ripulisco lo schermo
}

Revision: 27356
at June 3, 2010 07:45 by Homitsu


Initial Code
void setup(){
size(200,200);
}
void draw(){//nulla da dichiarare
}
void mousePressed(){
fill(233,233,0);
rect(mouseX,mouseY,mouseX,mouseY);
}
void keyPressed(){
background(255); //utile per “ripulire” lo schermo!
}

Initial URL
http://www.isiaurbino.net/mathema/?p=561

Initial Description
Sketch realizzato nel 2010 da Valentina Rachiele e Davide Homitsu Riboli per gli studenti ISIA Urbino nell'ambito del corso "Matematica per il Design.

Initial Title
Interazione Mouse e Tastiera

Initial Tags


Initial Language
Processing