diff --git a/src/event.rs b/src/event.rs index 223992db..709a2bf6 100644 --- a/src/event.rs +++ b/src/event.rs @@ -241,7 +241,8 @@ pub enum WindowEvent { /// (x,y) coords in pixels relative to the top-left corner of the window. Because the range /// of this data is limited by the display area and it may have been transformed by /// the OS to implement effects such as cursor acceleration, it should not be used - /// to implement non-cursor-like interactions such as 3D camera control. + /// to implement non-cursor-like interactions such as 3D camera control. For that, + /// consider [`DeviceEvent::MouseMotion`]. position: PhysicalPosition, },