(value: f64, axis_scale: AxisScale)
| 306 | } |
| 307 | |
| 308 | pub(crate) fn plot_value_to_data(value: f64, axis_scale: AxisScale) -> Option<f64> { |
| 309 | Transform::from(axis_scale) |
| 310 | .inverted()? |
| 311 | .transform_value(value) |
| 312 | } |
| 313 | |
| 314 | pub(crate) fn data_point_to_plot_with_transform( |
| 315 | point: [f64; 2], |
no test coverage detected