summaryrefslogtreecommitdiffstats
path: root/core/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/lib.rs')
-rw-r--r--core/src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/src/lib.rs b/core/src/lib.rs
index 821b09c1..881f56c9 100644
--- a/core/src/lib.rs
+++ b/core/src/lib.rs
@@ -23,6 +23,7 @@ mod length;
mod point;
mod rectangle;
mod vector;
+mod geometry;
pub use align::{Align, HorizontalAlignment, VerticalAlignment};
pub use background::Background;
@@ -32,6 +33,7 @@ pub use length::Length;
pub use point::Point;
pub use rectangle::Rectangle;
pub use vector::Vector;
+pub use geometry::{Vertex2D, Geometry2D};
#[cfg(feature = "command")]
mod command;