Add wheelMouse() to reference

This commit is contained in:
REAS
2013-05-22 15:56:15 -07:00
parent 543388c8eb
commit a88296abb7
+11 -2
View File
@@ -3069,10 +3069,19 @@ public class PApplet extends Applet
mouseExited();
}
/**
* @nowebref
*/
public void mouseWheel() { }
/**
* The event.getAmount() method returns negative values if the mouse wheel
* if rotated up or away from the user and positive in the other direction.
* On OS X with "natural" scrolling enabled, the values are opposite.
*
* @webref input:mouse
* @param event the MouseEvent
*/
public void mouseWheel(MouseEvent event) {
mouseWheel();
}