aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCrozet Sébastien <developer@crozet.re>2021-06-03 09:57:56 +0200
committerSébastien Crozet <sebastien@crozet.re>2021-06-03 10:21:18 +0200
commit59e5d8e7f9151f9a3ba06c1c6414aa4ffc19fa4d (patch)
treee501ffe29da4aa70dcfa1243331552670bb1951f /src
parentfdd370e51a90ff0fea82709185455b48e3841981 (diff)
downloadrapier-59e5d8e7f9151f9a3ba06c1c6414aa4ffc19fa4d.tar.gz
rapier-59e5d8e7f9151f9a3ba06c1c6414aa4ffc19fa4d.tar.bz2
rapier-59e5d8e7f9151f9a3ba06c1c6414aa4ffc19fa4d.zip
Add nalgebra to the prelude to make the macros work out of the box
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 1f32608..fd65766 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -157,4 +157,5 @@ pub mod prelude {
pub use crate::math::*;
pub use crate::pipeline::*;
pub use na::{point, vector, DMatrix, DVector};
+ pub extern crate nalgebra;
}