aboutsummaryrefslogtreecommitdiff
path: root/src/math/mod.rs
diff options
context:
space:
mode:
authorArne Dußin2020-11-17 20:59:50 +0100
committerArne Dußin2020-11-17 20:59:50 +0100
commitcc253346c52425bea2ca9919de87e7cfa5ecea97 (patch)
tree320005ee77728851b5934caedd50c8ebf7939706 /src/math/mod.rs
parent63f292010e51ad8622cccc4d4b6da887e4eaec47 (diff)
downloadgraf_karto-cc253346c52425bea2ca9919de87e7cfa5ecea97.tar.gz
graf_karto-cc253346c52425bea2ca9919de87e7cfa5ecea97.zip
Add polygon graph
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::*;