aboutsummaryrefslogtreecommitdiff
path: root/src/math/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/mod.rs')
-rw-r--r--src/math/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/math/mod.rs b/src/math/mod.rs
index bfc2ab4..afbc4a3 100644
--- a/src/math/mod.rs
+++ b/src/math/mod.rs
@@ -1,10 +1,12 @@
pub mod line_segment;
pub mod polygon;
+pub mod polygon_graph;
pub mod rect;
pub mod vec2;
pub use self::line_segment::*;
pub use self::polygon::*;
+pub use self::polygon_graph::*;
pub use self::rect::*;
pub use self::vec2::*;