| 11 | /// The source coordinate system consumed by a [`Transform`]. |
| 12 | #[derive(Debug, Clone, Copy, PartialEq, Eq, Default)] |
| 13 | pub enum CoordinateSystem { |
| 14 | /// Data coordinates: convert the raw value, then apply the axis scale. |
| 15 | #[default] |
| 16 | Data, |
| 17 | /// Axes coordinates, where `0.0` is the low edge of the plot and `1.0` is the high edge. |
| 18 | Axes, |
| 19 | } |
| 20 | |
| 21 | #[derive(Debug, Clone, PartialEq, Default)] |
| 22 | enum TransformOperation { |
nothing calls this directly
no outgoing calls
no test coverage detected