aboutsummaryrefslogtreecommitdiff
path: root/src/math/mod.rs
diff options
context:
space:
mode:
authorArne Dußin2020-11-21 11:23:16 +0100
committerArne Dußin2020-11-21 11:23:16 +0100
commit58ca374fab6dd90c4d7415bdcc98add002274894 (patch)
tree94ec5f6c49f9c7e4e812550c82ad21110b02c2ce /src/math/mod.rs
parent32aec90d0fac637e165913f194422e5b3d96de36 (diff)
downloadgraf_karto-58ca374fab6dd90c4d7415bdcc98add002274894.tar.gz
graf_karto-58ca374fab6dd90c4d7415bdcc98add002274894.zip
Move polygon functions into own mod
The math module was starting to be mostly polygon files and functions, so those got their own subfolder to make the math module less of a mess.
Diffstat (limited to 'src/math/mod.rs')
-rw-r--r--src/math/mod.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/math/mod.rs b/src/math/mod.rs
index 07bc36b..e72a7a4 100644
--- a/src/math/mod.rs
+++ b/src/math/mod.rs
@@ -1,17 +1,13 @@
pub mod line_segment;
pub mod polygon;
-pub mod polygon_graph;
pub mod rect;
pub mod triangle;
-pub mod triangulate;
pub mod vec2;
pub use self::line_segment::*;
pub use self::polygon::*;
-pub use self::polygon_graph::*;
pub use self::rect::*;
pub use self::triangle::*;
-pub use self::triangulate::*;
pub use self::vec2::*;
use std::cmp::Ordering;