Improved code readability. Components now aware of what mouse button was clicked.
[sixth-3d.git] / src / main / java / eu / svjatoslav / sixth / e3d / gui / humaninput / MouseEvent.java
index 8582cc0..b487d15 100644 (file)
@@ -6,13 +6,24 @@ package eu.svjatoslav.sixth.e3d.gui.humaninput;
 
 import eu.svjatoslav.sixth.e3d.geometry.Point2D;
 
+/**
+ * Represents mouse event.
+ */
 public class MouseEvent {
 
+    /**
+     * Mouse coordinate in screen space (pixels) relative to top left corner of the screen
+     * when mouse button was clicked.
+     */
     public Point2D coordinate;
 
     /**
-     * Indicates pressed mouse button. Except 0 that simply means mouse over
-     * given region.
+     * <pre>
+     * 0 - mouse over (no button pressed)
+     * 1 - left mouse button
+     * 2 - middle mouse button
+     * 3 - right mouse button
+     * </pre>
      */
     public int button;