Struct glsl_layout::dvec3
source · pub struct dvec3(_);
Expand description
Vector of 3 double
value.
foo: dvec3
is equivalent to glsl’s dvec3 foo;
Examples
let x: dvec3 = [1f32; 3].into();
Trait Implementations§
source§impl PartialOrd<dvec3> for dvec3
impl PartialOrd<dvec3> for dvec3
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