| 4 | use crate::{plot_state::PlotState, style::GridStyle}; |
| 5 | |
| 6 | pub(crate) struct Grid { |
| 7 | pipeline: Option<RenderPipeline>, |
| 8 | vertex_buffer: Option<Buffer>, |
| 9 | vertex_count: u32, |
| 10 | last_center: DVec2, |
| 11 | last_extents: DVec2, |
| 12 | last_style: GridStyle, |
| 13 | } |
| 14 | |
| 15 | /// The visual weight of a tick / grid line. |
| 16 | #[derive(Debug, Clone, Copy, PartialEq, Eq)] |
nothing calls this directly
no outgoing calls
no test coverage detected