Convert a data value with `base.powf(value)` before axis scaling.
(base: f64)
| 155 | |
| 156 | /// Convert a data value with `base.powf(value)` before axis scaling. |
| 157 | pub const fn exp(base: f64) -> Self { |
| 158 | Self { |
| 159 | coordinate_system: CoordinateSystem::Data, |
| 160 | operation: TransformOperation::Exp { base }, |
| 161 | } |
| 162 | } |
| 163 | |
| 164 | /// Return the transform's source coordinate system. |
| 165 | pub fn coordinate_system(&self) -> CoordinateSystem { |