From f3f2b57f88475361dd10475a94a6f3ac2793c5f2 Mon Sep 17 00:00:00 2001 From: Crozet Sébastien Date: Mon, 28 Sep 2020 11:01:15 +0200 Subject: Fix NaN when computing contacts between a cuboid and a perfectly vertical triangle. --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index aae0bd0..118ac23 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -18,6 +18,8 @@ pub extern crate ncollide3d as ncollide; #[cfg(feature = "serde")] #[macro_use] extern crate serde; +#[macro_use] +extern crate approx; extern crate num_traits as num; // #[macro_use] // extern crate array_macro; -- cgit