(
point: [f64; 2],
x_scale: AxisScale,
y_scale: AxisScale,
)
| 27 | } |
| 28 | |
| 29 | pub(crate) fn plot_point_to_data( |
| 30 | point: [f64; 2], |
| 31 | x_scale: AxisScale, |
| 32 | y_scale: AxisScale, |
| 33 | ) -> Option<[f64; 2]> { |
| 34 | crate::transform::plot_point_to_data(point, x_scale, y_scale) |
| 35 | } |
nothing calls this directly
no outgoing calls
no test coverage detected