Struct glsl_layout::vec3
source · pub struct vec3(_);
Expand description
Vector of 3 float
values.
foo: vec3
is equivalent to glsl’s vec3 foo;
Examples
let x: vec3 = [1f32; 3].into();
Trait Implementations§
source§impl PartialOrd<vec3> for vec3
impl PartialOrd<vec3> for vec3
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more