summaryrefslogtreecommitdiff
path: root/src/geom/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/geom/mod.rs')
-rw-r--r--src/geom/mod.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/geom/mod.rs b/src/geom/mod.rs
index 6f48d7d9..11e082b8 100644
--- a/src/geom/mod.rs
+++ b/src/geom/mod.rs
@@ -5,6 +5,7 @@ mod macros;
mod align;
mod angle;
mod dir;
+mod em;
mod fr;
mod gen;
mod length;
@@ -19,6 +20,7 @@ mod spec;
pub use align::*;
pub use angle::*;
pub use dir::*;
+pub use em::*;
pub use fr::*;
pub use gen::*;
pub use length::*;
@@ -35,6 +37,9 @@ use std::fmt::{self, Debug, Display, Formatter};
use std::iter::Sum;
use std::ops::*;
+use decorum::N64;
+use serde::{Deserialize, Serialize};
+
/// Generic access to a structure's components.
pub trait Get<Index> {
/// The structure's component type.