aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorCrozet Sébastien <developer@crozet.re>2021-01-24 11:13:44 +0100
committerCrozet Sébastien <developer@crozet.re>2021-01-24 11:13:44 +0100
commit8f7220f03d3c23574b9ece09d81d32e862f1b5c6 (patch)
tree643baa2128965fbbaab3f13c67644eba90b8135c /src/lib.rs
parent90db26eb501b65cda362dcef34777106f533248b (diff)
downloadrapier-8f7220f03d3c23574b9ece09d81d32e862f1b5c6.tar.gz
rapier-8f7220f03d3c23574b9ece09d81d32e862f1b5c6.tar.bz2
rapier-8f7220f03d3c23574b9ece09d81d32e862f1b5c6.zip
Rename cdl to parry.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib.rs b/src/lib.rs
index c177173..08be61a 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -12,13 +12,13 @@
#![allow(missing_docs)]
#[cfg(all(feature = "dim2", feature = "f32"))]
-pub extern crate cdl2d as cdl;
+pub extern crate parry2d as parry;
#[cfg(all(feature = "dim2", feature = "f64"))]
-pub extern crate cdl2d_f64 as cdl;
+pub extern crate parry2d_f64 as parry;
#[cfg(all(feature = "dim3", feature = "f32"))]
-pub extern crate cdl3d as cdl;
+pub extern crate parry3d as parry;
#[cfg(all(feature = "dim3", feature = "f64"))]
-pub extern crate cdl3d_f64 as cdl;
+pub extern crate parry3d_f64 as parry;
pub extern crate crossbeam;
pub extern crate nalgebra as na;
@@ -136,7 +136,7 @@ pub mod pipeline;
pub mod utils;
pub mod math {
- pub use cdl::math::*;
+ pub use parry::math::*;
#[cfg(feature = "dim2")]
pub const MAX_MANIFOLD_POINTS: usize = 2;
#[cfg(feature = "dim3")]