summaryrefslogtreecommitdiff
path: root/src/geom/mod.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2021-01-09 21:35:36 +0100
committerLaurenz <laurmaedje@gmail.com>2021-01-09 21:35:36 +0100
commit3b2a28ca8edf61cb1376a095be36c7d006c92d76 (patch)
treec64cdaed32f8f45810f09ba8cfcf296971c21dff /src/geom/mod.rs
parent8275b186ba75b5e75a4108105c1ea3bfdbe6ada2 (diff)
Add angle data type 📐
Diffstat (limited to 'src/geom/mod.rs')
-rw-r--r--src/geom/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/geom/mod.rs b/src/geom/mod.rs
index 69bb0898..e601cb1f 100644
--- a/src/geom/mod.rs
+++ b/src/geom/mod.rs
@@ -3,6 +3,7 @@
#[macro_use]
mod macros;
mod align;
+mod angle;
mod dir;
mod gen;
mod length;
@@ -14,6 +15,7 @@ mod size;
mod spec;
pub use align::*;
+pub use angle::*;
pub use dir::*;
pub use gen::*;
pub use length::*;