(scale: AxisScale)
| 109 | |
| 110 | impl From<AxisScale> for Transform { |
| 111 | fn from(scale: AxisScale) -> Self { |
| 112 | match scale { |
| 113 | AxisScale::Linear => Self::identity(), |
| 114 | AxisScale::Log { base } => Self::log(base), |
| 115 | } |
| 116 | } |
| 117 | } |
| 118 | |
| 119 | impl Transform { |
nothing calls this directly
no outgoing calls
no test coverage detected