gdnative_geom/lib.rs
1//! Geometric types.
2
3pub extern crate euclid;
4
5mod plane;
6mod aabb;
7mod basis;
8mod transform;
9
10pub type Vector3 = euclid::Vector3D<f32>;
11pub type Vector2 = euclid::Vector2D<f32>;
12pub type Transform2D = euclid::Transform2D<f32>;
13pub type Quat = euclid::Rotation3D<f32>;
14pub type Rect2 = euclid::Rect<f32>;
15
16pub use plane::Plane;
17pub use aabb::Aabb;
18pub use basis::Basis;
19pub use transform::Transform;