| 88 | /// Direction for keyboard-style panning. |
| 89 | #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] |
| 90 | pub enum PanDirection { |
| 91 | /// Pan toward smaller x values. |
| 92 | Left, |
| 93 | /// Pan toward larger x values. |
| 94 | Right, |
| 95 | /// Pan toward larger y values. |
| 96 | Up, |
| 97 | /// Pan toward smaller y values. |
| 98 | Down, |
| 99 | } |
| 100 | |
| 101 | // In keeping with our batteries-included philosophy, most everything is enabled by default. |
| 102 |
nothing calls this directly
no outgoing calls
no test coverage detected