supagu
Results
11
issues of
supagu
I've copied the Aabb2 code from here: https://github.com/rustgd/collision-rs/blob/master/benches/dbvt.rs ``` fn aabb2(minx: f32, miny: f32, maxx: f32, maxy: f32) -> Aabb2 { Aabb2::new(Point2::new(minx, miny), Point2::new(maxx, maxy)) } ``` but in my...