pub struct vec3(/* private fields */);
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 for vec3
impl PartialOrd for vec3
impl Copy for vec3
impl StructuralPartialEq for vec3
Auto Trait Implementations§
impl Freeze for vec3
impl RefUnwindSafe for vec3
impl Send for vec3
impl Sync for vec3
impl Unpin for vec3
impl UnwindSafe for vec3
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more