| 9 | |
| 10 | #[derive(Debug, Default)] |
| 11 | struct AxisLinkInner { |
| 12 | /// The shared camera position |
| 13 | position: f64, |
| 14 | /// The shared camera half extent |
| 15 | half_extent: f64, |
| 16 | /// Version counter to detect changes |
| 17 | version: u64, |
| 18 | } |
| 19 | |
| 20 | impl AxisLink { |
| 21 | /// Create a new axis link. |
nothing calls this directly
no outgoing calls
no test coverage detected