summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorLizzy Fleckenstein <eliasfleckenstein@web.de>2023-02-28 18:08:41 +0100
committerLizzy Fleckenstein <eliasfleckenstein@web.de>2023-02-28 18:09:05 +0100
commit85d55e42119ea80cd1cd9e9e34c05ea7d07b3a88 (patch)
tree416c228135ab6dbf71ebba6c0a520ed8225476dd /src/lib.rs
parent060a3bd858cc76365bfa8b1fd356211e7eb11cbf (diff)
downloadmt_net-85d55e42119ea80cd1cd9e9e34c05ea7d07b3a88.tar.xz
Use cgmath and support BS constant
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 8e134c5..2c10f35 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -35,6 +35,11 @@ mod conn;
#[cfg(feature = "conn")]
pub use conn::*;
+pub use cgmath::{Deg, Euler, Point2, Point3, Rad, Vector2, Vector3};
+pub use collision::{Aabb2, Aabb3};
+
+pub const BS: f32 = 10.0;
+
mod to_clt;
mod to_srv;