Leave a data value unchanged before the axis scale is applied.
()
| 119 | impl Transform { |
| 120 | /// Leave a data value unchanged before the axis scale is applied. |
| 121 | pub const fn identity() -> Self { |
| 122 | Self { |
| 123 | coordinate_system: CoordinateSystem::Data, |
| 124 | operation: TransformOperation::Identity, |
| 125 | } |
| 126 | } |
| 127 | |
| 128 | /// Interpret values as normalized positions inside the plot area. |
| 129 | /// |
nothing calls this directly
no outgoing calls
no test coverage detected