Function voxel_traversal_f64

Source
pub fn voxel_traversal_f64<F>(
    ray_start: (f64, f64, f64),
    ray_end: (f64, f64, f64),
    visit: F,
)
where F: FnMut((i32, i32, i32), (i32, i32, i32)) -> bool,