Function plot_3d_i64_bresenham_line

Source
pub fn plot_3d_i64_bresenham_line(
    start_point: Point<f64, 3>,
    end_point: Point<f64, 3>,
) -> Vec<Point<i64, 3>> 
Expand description

A premade variant of the bresenham line function for double-precision floating-point arithmetic, returns a Vec of Points with inner type i64.