imgui-rs/imgui/src/math.rs
2021-09-30 18:58:38 -04:00

8 lines
286 B
Rust

pub(crate) type MintVec2 = mint::Vector2<f32>;
pub(crate) type MintVec3 = mint::Vector3<f32>;
pub(crate) type MintVec4 = mint::Vector4<f32>;
pub(crate) type MintIVec2 = mint::Vector2<i32>;
pub(crate) type MintIVec3 = mint::Vector3<i32>;
pub(crate) type MintIVec4 = mint::Vector4<i32>;