| 228 | /// Separate x and y coordinate transforms for a two-dimensional point. |
| 229 | #[derive(Debug, Clone, PartialEq, Default)] |
| 230 | pub struct PositionTransform { |
| 231 | /// How to interpret or convert x values. `None` means normal data coordinates. |
| 232 | pub x: Option<Transform>, |
| 233 | /// How to interpret or convert y values. `None` means normal data coordinates. |
| 234 | pub y: Option<Transform>, |
| 235 | } |
| 236 | |
| 237 | impl PositionTransform { |
| 238 | /// Create a new x/y transform pair. |
nothing calls this directly
no outgoing calls
no test coverage detected