#[repr(transparent)]pub struct Vec4 { /* private fields */ }
Implementations
sourceimpl Vec4
impl Vec4
pub fn add(&self, b: &Vec4) -> Vec4
pub fn divide(&self, b: &Vec4) -> Vec4
pub fn dot(&self, b: &Vec4) -> f32
pub fn w(&self) -> f32
pub fn x(&self) -> f32
pub fn xy(&self) -> Vec2
pub fn xyz(&self) -> Vec3
pub fn y(&self) -> f32
pub fn z(&self) -> f32
pub fn interpolate(&self, v2: &Vec4, factor: f64) -> Vec4
pub fn length(&self) -> f32
pub fn max(&self, b: &Vec4) -> Vec4
pub fn min(&self, b: &Vec4) -> Vec4
pub fn multiply(&self, b: &Vec4) -> Vec4
pub fn near(&self, v2: &Vec4, epsilon: f32) -> bool
pub fn negate(&self) -> Vec4
pub fn normalize(&self) -> Vec4
pub fn scale(&self, factor: f32) -> Vec4
pub fn subtract(&self, b: &Vec4) -> Vec4
pub fn one() -> Vec4
pub fn w_axis() -> Vec4
pub fn x_axis() -> Vec4
pub fn y_axis() -> Vec4
pub fn z_axis() -> Vec4
pub fn zero() -> Vec4
Trait Implementations
sourceimpl PartialEq<Vec4> for Vec4
impl PartialEq<Vec4> for Vec4
sourceimpl StaticType for Vec4
impl StaticType for Vec4
sourcefn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of Self
.
impl Copy for Vec4
impl Eq for Vec4
Auto Trait Implementations
impl RefUnwindSafe for Vec4
impl Send for Vec4
impl Sync for Vec4
impl Unpin for Vec4
impl UnwindSafe for Vec4
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> StaticTypeExt for T where
T: StaticType,
impl<T> StaticTypeExt for T where
T: StaticType,
sourcefn ensure_type()
fn ensure_type()
Ensures that the type has been registered with the type system.
sourceimpl<T> ToClosureReturnValue for T where
T: ToValue,
impl<T> ToClosureReturnValue for T where
T: ToValue,
fn to_closure_return_value(&self) -> Option<Value>
sourceimpl<T> ToSendValue for T where
T: Send + ToValue + ?Sized,
impl<T> ToSendValue for T where
T: Send + ToValue + ?Sized,
sourcefn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
Returns a SendValue
clone of self
.