Function plot_2d_f32_bresenham_line
Source pub fn plot_2d_f32_bresenham_line(
start_point: Point<f32, 2>,
end_point: Point<f32, 2>,
) -> Vec<Point<f32, 2>> ⓘ
Expand description
A premade variant of the bresenham line function for single-precision floating-point arithmetic, returns a Vec
of Point
s with inner type f32.