(&mut self, x: f32, y: f32)
| 221 | /// Set absolute mouse position in window pixels. |
| 222 | #[inline] |
| 223 | pub fn set_position(&mut self, x: f32, y: f32) { |
| 224 | self.position_x = x; |
| 225 | self.position_y = y; |
| 226 | } |
| 227 | |
| 228 | /// Set viewport size used for normalized mouse position. |
| 229 | #[inline] |
no outgoing calls
no test coverage detected