| 5 | /// A tick with an assigned screen position. |
| 6 | #[derive(Debug, Clone, PartialEq)] |
| 7 | pub struct PositionedTick { |
| 8 | /// Screen position (x for vertical ticks, y for horizontal ticks) |
| 9 | pub screen_pos: f32, |
| 10 | /// The tick itself. |
| 11 | pub tick: Tick, |
| 12 | } |
| 13 | |
| 14 | /// A position along an axis where a grid line and tick label is placed. |
| 15 | #[derive(Debug, Clone, Copy, PartialEq)] |
nothing calls this directly
no outgoing calls
no test coverage detected