diff options
| author | Crozet Sébastien <developer@crozet.re> | 2020-12-17 10:24:36 +0100 |
|---|---|---|
| committer | Crozet Sébastien <developer@crozet.re> | 2020-12-29 11:31:00 +0100 |
| commit | e231bacec608fa5efd24f7a876572927dbd6c9c4 (patch) | |
| tree | 596f0b6a1fc666586ffcd71d07a39a7c182c6ef8 /src/lib.rs | |
| parent | cc6d1b973002b4d366bc81ec6bf9e8240ad7b404 (diff) | |
| download | rapier-e231bacec608fa5efd24f7a876572927dbd6c9c4.tar.gz rapier-e231bacec608fa5efd24f7a876572927dbd6c9c4.tar.bz2 rapier-e231bacec608fa5efd24f7a876572927dbd6c9c4.zip | |
Move all the contact manifold computations out of Rapier.
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -11,11 +11,11 @@ // FIXME: deny that #![allow(missing_docs)] +pub extern crate crossbeam; #[cfg(feature = "dim2")] -pub extern crate buckler2d as buckler; +pub extern crate eagl2d as eagl; #[cfg(feature = "dim3")] -pub extern crate buckler3d as buckler; -pub extern crate crossbeam; +pub extern crate eagl3d as eagl; pub extern crate nalgebra as na; #[cfg(feature = "serde")] #[macro_use] @@ -128,4 +128,4 @@ pub mod dynamics; pub mod geometry; pub mod pipeline; pub mod utils; -pub use buckler::math; +pub use eagl::math; |
