Language \ Environment \ Comparison
 
Index
 
  The Processing 1.0 _ALPHA_ Reference is a work in progress.
If you see any errors or have any comments, please write to: reas at groupc.net
Name  

mouseMoved()

   
Examples  
// Move the mouse across the image 
// to change its value 
 
int value = 0; 
 
void loop() { 
  fill(value); 
  rect(25, 25, 50, 50); 
} 
 
void mouseMoved() 
{ 
  value = value + 5; 
  if (value > 255) { 
    value = 0; 
  } 
} 
Description   The mouseMoved() function is called every time the mouse moves and the mouse button is not pressed.
   
Syntax  
mouseMoved()
   
Returns   None
   
Usage   Web & Application
   
Related   mouseX
mouseY
pmouseX
pmouseY
mousePressed
mousePressed()
mouseReleased()
mouseDragged()
   
© 2004 - 2001 Massachusetts Institute of Technology and Interaction Design Institute Ivrea
Processing is an open project initiated by Ben Fry and Casey Reas