From e231bacec608fa5efd24f7a876572927dbd6c9c4 Mon Sep 17 00:00:00 2001 From: Crozet Sébastien Date: Thu, 17 Dec 2020 10:24:36 +0100 Subject: Move all the contact manifold computations out of Rapier. --- src_testbed/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src_testbed/lib.rs') diff --git a/src_testbed/lib.rs b/src_testbed/lib.rs index 0d1483e..0880419 100644 --- a/src_testbed/lib.rs +++ b/src_testbed/lib.rs @@ -1,9 +1,9 @@ #[macro_use] extern crate kiss3d; #[cfg(feature = "dim2")] -extern crate buckler2d as buckler; +extern crate eagl2d as eagl; #[cfg(feature = "dim3")] -extern crate buckler3d as buckler; +extern crate eagl3d as eagl; extern crate nalgebra as na; #[cfg(feature = "dim2")] extern crate ncollide2d as ncollide; -- cgit