mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-11 21:48:36 +00:00
8 lines
286 B
Rust
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>;
|