Interazione Mouse e Tastiera


/ Published in: Processing
Save to your folder(s)

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


Copy this code and paste it in your HTML
  1. void setup(){
  2. size(200,200);
  3. background(255);
  4. }
  5. void draw(){//nulla da dichiarare
  6. }
  7. void mousePressed(){
  8. fill(233,233,0);
  9. rect(mouseX,mouseY,mouseX,mouseY);
  10. }
  11. void keyPressed(){
  12. background(255); //ripulisco lo schermo
  13. }

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

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.