Override this function to handle mouse movements in your camera handler
| <CameraHandler>._camMouseMove( | |
| e |
)
e
Event object that contains the following attributes:
Attribute name |
|
view |
The active viewpoint object. |
x |
Normalized x coordinate of mouse. |
y |
Normalized y coordinate of mouse. |
dx |
Relative movement of x coordinate of mouse. |
dy |
Relative movement of y coordinate of mouse. |
Overriding this function allows you to handle mouse movements in your custom camera handler.
This will be called in response to a viz.MOUSE_MOVE_EVENT.
None