mathf 0.1.16

Math crate for Godi Game Engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod error;
pub mod math_helper;
pub mod matrix;
pub(crate) mod vector2;
pub(crate) mod vector3;

pub mod vector {
    pub use vector2::Point2;
    pub use vector2::Vector2;
    pub use vector3::Point3;
    pub use vector3::Vector3;
}