| 49 | |
| 50 | #[derive(Debug, PartialEq, Clone, Copy)] |
| 51 | pub struct Desc { |
| 52 | pub end_x: Option<XEnd>, |
| 53 | pub spacing_x: f32, // pixels |
| 54 | pub spacing_y: f32, // pixels |
| 55 | pub min_steps_x: f32, |
| 56 | pub min_steps_y: f32, |
| 57 | } |
| 58 | |
| 59 | impl Default for Desc { |
| 60 | fn default() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected