Interazione mouse 2 [pmouse]


/ 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. /*L'istruzione "pmouse" calcola la posizione
  2. del puntatore immediatamente precedente a quella
  3. attuale*/
  4.  
  5. void setup() {
  6. size(400,400);
  7. }
  8.  
  9. void draw(){
  10. line(pmouseX,pmouseY,mouseX,mouseY);
  11. }

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

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.