From 59e5d8e7f9151f9a3ba06c1c6414aa4ffc19fa4d Mon Sep 17 00:00:00 2001 From: Crozet Sébastien Date: Thu, 3 Jun 2021 09:57:56 +0200 Subject: Add nalgebra to the prelude to make the macros work out of the box --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/lib.rs') 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; } -- cgit