Create a new x/y transform pair.
(x: Option<Transform>, y: Option<Transform>)
| 237 | impl PositionTransform { |
| 238 | /// Create a new x/y transform pair. |
| 239 | pub fn new(x: Option<Transform>, y: Option<Transform>) -> Self { |
| 240 | Self { x, y } |
| 241 | } |
| 242 | |
| 243 | /// Use normal data coordinates for both axes. |
| 244 | pub const fn identity() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected