Trait glm::Primitive [] [src]

pub trait Primitive: Send + Copy + Sized + Clone + PartialOrd + PartialEq + Rand { }

Marker trait for primitive types.

Note

In glm, not all Rust primitive number types are used. Only those types that used in GLSL, i.e., f32, f64, i32, u32 and bool, implement this trait.

Implementors