(
value: f64,
axis_scale: AxisScale,
transform: Option<&Transform>,
)
| 275 | } |
| 276 | |
| 277 | pub(crate) fn data_value_to_plot( |
| 278 | value: f64, |
| 279 | axis_scale: AxisScale, |
| 280 | transform: Option<&Transform>, |
| 281 | ) -> Option<f64> { |
| 282 | data_value_to_plot_with_axis_range(value, axis_scale, transform, None) |
| 283 | } |
| 284 | |
| 285 | pub(crate) fn data_value_to_plot_with_axis_range( |
| 286 | value: f64, |
no test coverage detected