Jerome Robert
Jerome Robert
Running this code with Kiddo 4.2.0: ```rust kiddo::ImmutableKdTree::::new_from_slice(&[]).nearest_one::(&[0.; 3]); ``` leads to `(signal: 11, SIGSEGV: invalid memory reference)`. This patch: ```patch --- a/src/immutable/common/generate_immutable_nearest_one.rs +++ b/src/immutable/common/generate_immutable_nearest_one.rs @@ -102,8 +102,7 @@ macro_rules!...
Using this code: ```rust use std::{ fs::File, io::{BufRead, BufReader}, }; fn main() { let f = File::open("pointcloud.dat").expect("Unable to open file"); let br = BufReader::new(f); let mut coords = Vec::new(); for...
Dear Loic, Please find those 2 fixes we found by projecting random (fuzzing) points on a z=0 disk containing some almost degenerated triangles. I hope I didn't miss something about...
* isnan and isfinite does not work when building with -Ofast * The issue has always been there but it's now detected by clang >= 18 * This version of...