[][src]Struct cgmath::Vector4

#[repr(C)]
pub struct Vector4<S> {
    pub x: S,
    pub y: S,
    pub z: S,
    pub w: S,
}

A 4-dimensional vector.

This type is marked as #[repr(C)].

Fields

x: S

The x component of the vector.

y: S

The y component of the vector.

z: S

The z component of the vector.

w: S

The w component of the vector.

Methods

impl<S> Vector4<S>[src]

pub fn new(x: S, y: S, z: S, w: S) -> Vector4<S>[src]

Construct a new vector, using the provided values.

pub fn map<U, F>(self, f: F) -> Vector4<U> where
    F: FnMut(S) -> U, 
[src]

Perform the given operation on each field in the vector, returning a new point constructed from the operations.

impl<S: NumCast + Copy> Vector4<S>[src]

pub fn cast<T: NumCast>(&self) -> Option<Vector4<T>>[src]

Component-wise casting to another type.

impl<S: BaseNum> Vector4<S>[src]

pub fn unit_x() -> Vector4<S>[src]

A unit vector in the x direction.

pub fn unit_y() -> Vector4<S>[src]

A unit vector in the y direction.

pub fn unit_z() -> Vector4<S>[src]

A unit vector in the z direction.

pub fn unit_w() -> Vector4<S>[src]

A unit vector in the w direction.

pub fn truncate(self) -> Vector3<S>[src]

Create a Vector3, dropping the w value.

pub fn truncate_n(&self, n: isize) -> Vector3<S>[src]

Create a Vector3, dropping the nth element.

Trait Implementations

impl<S: Copy> Array for Vector4<S>[src]

type Element = S

fn as_ptr(&self) -> *const Self::Element[src]

Get the pointer to the first element of the array.

fn as_mut_ptr(&mut self) -> *mut Self::Element[src]

Get a mutable pointer to the first element of the array.

fn swap_elements(&mut self, i: usize, j: usize)[src]

Swap the elements at indices i and j in-place.

impl<S: BaseNum> ElementWise<Vector4<S>> for Vector4<S>[src]

impl<S: BaseNum> ElementWise<S> for Vector4<S>[src]

impl<S: BaseNum> VectorSpace for Vector4<S>[src]

type Scalar = S

The associated scalar.

impl<S: BaseFloat> MetricSpace for Vector4<S>[src]

type Metric = S

The metric to be returned by the distance function.

fn distance(self, other: Self) -> Self::Metric[src]

The distance between two values.

impl<S: BaseFloat> InnerSpace for Vector4<S>[src]

fn is_perpendicular(self, other: Self) -> bool[src]

Returns true if the vector is perpendicular (at right angles) to the other vector. Read more

fn magnitude2(self) -> Self::Scalar[src]

Returns the squared magnitude. Read more

fn magnitude(self) -> Self::Scalar[src]

The distance from the tail to the tip of the vector.

fn angle(self, other: Self) -> Rad<Self::Scalar>[src]

Returns the angle between two vectors in radians.

fn normalize(self) -> Self[src]

Returns a vector with the same direction, but with a magnitude of 1.

fn normalize_to(self, magnitude: Self::Scalar) -> Self[src]

Returns a vector with the same direction and a given magnitude.

fn lerp(self, other: Self, amount: Self::Scalar) -> Self[src]

Returns the result of linearly interpolating the magnitude of the vector towards the magnitude of other by the specified amount. Read more

fn project_on(self, other: Self) -> Self[src]

Returns the vector projection of the current inner space projected onto the supplied argument. Read more

impl<S: Copy> Copy for Vector4<S>[src]

impl<S> AsRef<[S; 4]> for Vector4<S>[src]

impl<S> AsRef<(S, S, S, S)> for Vector4<S>[src]

impl<S: Eq> Eq for Vector4<S>[src]

impl<S: Clone> Clone for Vector4<S>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<S: PartialEq> PartialEq<Vector4<S>> for Vector4<S>[src]

impl<S: Clone> From<[S; 4]> for Vector4<S>[src]

impl<'a, S> From<&'a [S; 4]> for &'a Vector4<S>[src]

impl<'a, S> From<&'a mut [S; 4]> for &'a mut Vector4<S>[src]

impl<S> From<(S, S, S, S)> for Vector4<S>[src]

impl<'a, S> From<&'a (S, S, S, S)> for &'a Vector4<S>[src]

impl<'a, S> From<&'a mut (S, S, S, S)> for &'a mut Vector4<S>[src]

impl<S> From<Vector4<S>> for Vector4<S>[src]

impl<S> Into<[S; 4]> for Vector4<S>[src]

impl<S> Into<(S, S, S, S)> for Vector4<S>[src]

impl<S: Clone> Into<Vector4<S>> for Vector4<S>[src]

impl<S> AsMut<[S; 4]> for Vector4<S>[src]

impl<S> AsMut<(S, S, S, S)> for Vector4<S>[src]

impl<S: Hash> Hash for Vector4<S>[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl<S: Debug> Debug for Vector4<S>[src]

impl<S: BaseNum> Rem<S> for Vector4<S>[src]

type Output = Vector4<S>

The resulting type after applying the % operator.

impl<'a, S: BaseNum> Rem<S> for &'a Vector4<S>[src]

type Output = Vector4<S>

The resulting type after applying the % operator.

impl Rem<Vector4<usize>> for usize[src]

type Output = Vector4<usize>

The resulting type after applying the % operator.

impl<'a> Rem<&'a Vector4<usize>> for usize[src]

type Output = Vector4<usize>

The resulting type after applying the % operator.

impl Rem<Vector4<u8>> for u8[src]

type Output = Vector4<u8>

The resulting type after applying the % operator.

impl<'a> Rem<&'a Vector4<u8>> for u8[src]

type Output = Vector4<u8>

The resulting type after applying the % operator.

impl Rem<Vector4<u16>> for u16[src]

type Output = Vector4<u16>

The resulting type after applying the % operator.

impl<'a> Rem<&'a Vector4<u16>> for u16[src]

type Output = Vector4<u16>

The resulting type after applying the % operator.

impl Rem<Vector4<u32>> for u32[src]

type Output = Vector4<u32>

The resulting type after applying the % operator.

impl<'a> Rem<&'a Vector4<u32>> for u32[src]

type Output = Vector4<u32>

The resulting type after applying the % operator.

impl Rem<Vector4<u64>> for u64[src]

type Output = Vector4<u64>

The resulting type after applying the % operator.

impl<'a> Rem<&'a Vector4<u64>> for u64[src]

type Output = Vector4<u64>

The resulting type after applying the % operator.

impl Rem<Vector4<isize>> for isize[src]

type Output = Vector4<isize>

The resulting type after applying the % operator.

impl<'a> Rem<&'a Vector4<isize>> for isize[src]

type Output = Vector4<isize>

The resulting type after applying the % operator.

impl Rem<Vector4<i8>> for i8[src]

type Output = Vector4<i8>

The resulting type after applying the % operator.

impl<'a> Rem<&'a Vector4<i8>> for i8[src]

type Output = Vector4<i8>

The resulting type after applying the % operator.

impl Rem<Vector4<i16>> for i16[src]

type Output = Vector4<i16>

The resulting type after applying the % operator.

impl<'a> Rem<&'a Vector4<i16>> for i16[src]

type Output = Vector4<i16>

The resulting type after applying the % operator.

impl Rem<Vector4<i32>> for i32[src]

type Output = Vector4<i32>

The resulting type after applying the % operator.

impl<'a> Rem<&'a Vector4<i32>> for i32[src]

type Output = Vector4<i32>

The resulting type after applying the % operator.

impl Rem<Vector4<i64>> for i64[src]

type Output = Vector4<i64>

The resulting type after applying the % operator.

impl<'a> Rem<&'a Vector4<i64>> for i64[src]

type Output = Vector4<i64>

The resulting type after applying the % operator.

impl Rem<Vector4<f32>> for f32[src]

type Output = Vector4<f32>

The resulting type after applying the % operator.

impl<'a> Rem<&'a Vector4<f32>> for f32[src]

type Output = Vector4<f32>

The resulting type after applying the % operator.

impl Rem<Vector4<f64>> for f64[src]

type Output = Vector4<f64>

The resulting type after applying the % operator.

impl<'a> Rem<&'a Vector4<f64>> for f64[src]

type Output = Vector4<f64>

The resulting type after applying the % operator.

impl<S: BaseNum> Add<Vector4<S>> for Vector4<S>[src]

type Output = Vector4<S>

The resulting type after applying the + operator.

impl<'a, S: BaseNum> Add<&'a Vector4<S>> for Vector4<S>[src]

type Output = Vector4<S>

The resulting type after applying the + operator.

impl<'a, S: BaseNum> Add<Vector4<S>> for &'a Vector4<S>[src]

type Output = Vector4<S>

The resulting type after applying the + operator.

impl<'a, 'b, S: BaseNum> Add<&'a Vector4<S>> for &'b Vector4<S>[src]

type Output = Vector4<S>

The resulting type after applying the + operator.

impl<S: BaseNum> Sub<Vector4<S>> for Vector4<S>[src]

type Output = Vector4<S>

The resulting type after applying the - operator.

impl<'a, S: BaseNum> Sub<&'a Vector4<S>> for Vector4<S>[src]

type Output = Vector4<S>

The resulting type after applying the - operator.

impl<'a, S: BaseNum> Sub<Vector4<S>> for &'a Vector4<S>[src]

type Output = Vector4<S>

The resulting type after applying the - operator.

impl<'a, 'b, S: BaseNum> Sub<&'a Vector4<S>> for &'b Vector4<S>[src]

type Output = Vector4<S>

The resulting type after applying the - operator.

impl<S: BaseFloat> Mul<Vector4<S>> for Matrix4<S>[src]

type Output = Vector4<S>

The resulting type after applying the * operator.

impl<'a, S: BaseFloat> Mul<&'a Vector4<S>> for Matrix4<S>[src]

type Output = Vector4<S>

The resulting type after applying the * operator.

impl<'a, S: BaseFloat> Mul<Vector4<S>> for &'a Matrix4<S>[src]

type Output = Vector4<S>

The resulting type after applying the * operator.

impl<'a, 'b, S: BaseFloat> Mul<&'a Vector4<S>> for &'b Matrix4<S>[src]

type Output = Vector4<S>

The resulting type after applying the * operator.

impl<S: BaseNum> Mul<S> for Vector4<S>[src]

type Output = Vector4<S>

The resulting type after applying the * operator.

impl<'a, S: BaseNum> Mul<S> for &'a Vector4<S>[src]

type Output = Vector4<S>

The resulting type after applying the * operator.

impl Mul<Vector4<usize>> for usize[src]

type Output = Vector4<usize>

The resulting type after applying the * operator.

impl<'a> Mul<&'a Vector4<usize>> for usize[src]

type Output = Vector4<usize>

The resulting type after applying the * operator.

impl Mul<Vector4<u8>> for u8[src]

type Output = Vector4<u8>

The resulting type after applying the * operator.

impl<'a> Mul<&'a Vector4<u8>> for u8[src]

type Output = Vector4<u8>

The resulting type after applying the * operator.

impl Mul<Vector4<u16>> for u16[src]

type Output = Vector4<u16>

The resulting type after applying the * operator.

impl<'a> Mul<&'a Vector4<u16>> for u16[src]

type Output = Vector4<u16>

The resulting type after applying the * operator.

impl Mul<Vector4<u32>> for u32[src]

type Output = Vector4<u32>

The resulting type after applying the * operator.

impl<'a> Mul<&'a Vector4<u32>> for u32[src]

type Output = Vector4<u32>

The resulting type after applying the * operator.

impl Mul<Vector4<u64>> for u64[src]

type Output = Vector4<u64>

The resulting type after applying the * operator.

impl<'a> Mul<&'a Vector4<u64>> for u64[src]

type Output = Vector4<u64>

The resulting type after applying the * operator.

impl Mul<Vector4<isize>> for isize[src]

type Output = Vector4<isize>

The resulting type after applying the * operator.

impl<'a> Mul<&'a Vector4<isize>> for isize[src]

type Output = Vector4<isize>

The resulting type after applying the * operator.

impl Mul<Vector4<i8>> for i8[src]

type Output = Vector4<i8>

The resulting type after applying the * operator.

impl<'a> Mul<&'a Vector4<i8>> for i8[src]

type Output = Vector4<i8>

The resulting type after applying the * operator.

impl Mul<Vector4<i16>> for i16[src]

type Output = Vector4<i16>

The resulting type after applying the * operator.

impl<'a> Mul<&'a Vector4<i16>> for i16[src]

type Output = Vector4<i16>

The resulting type after applying the * operator.

impl Mul<Vector4<i32>> for i32[src]

type Output = Vector4<i32>

The resulting type after applying the * operator.

impl<'a> Mul<&'a Vector4<i32>> for i32[src]

type Output = Vector4<i32>

The resulting type after applying the * operator.

impl Mul<Vector4<i64>> for i64[src]

type Output = Vector4<i64>

The resulting type after applying the * operator.

impl<'a> Mul<&'a Vector4<i64>> for i64[src]

type Output = Vector4<i64>

The resulting type after applying the * operator.

impl Mul<Vector4<f32>> for f32[src]

type Output = Vector4<f32>

The resulting type after applying the * operator.

impl<'a> Mul<&'a Vector4<f32>> for f32[src]

type Output = Vector4<f32>

The resulting type after applying the * operator.

impl Mul<Vector4<f64>> for f64[src]

type Output = Vector4<f64>

The resulting type after applying the * operator.

impl<'a> Mul<&'a Vector4<f64>> for f64[src]

type Output = Vector4<f64>

The resulting type after applying the * operator.

impl<S: BaseNum> Div<S> for Vector4<S>[src]

type Output = Vector4<S>

The resulting type after applying the / operator.

impl<'a, S: BaseNum> Div<S> for &'a Vector4<S>[src]

type Output = Vector4<S>

The resulting type after applying the / operator.

impl Div<Vector4<usize>> for usize[src]

type Output = Vector4<usize>

The resulting type after applying the / operator.

impl<'a> Div<&'a Vector4<usize>> for usize[src]

type Output = Vector4<usize>

The resulting type after applying the / operator.

impl Div<Vector4<u8>> for u8[src]

type Output = Vector4<u8>

The resulting type after applying the / operator.

impl<'a> Div<&'a Vector4<u8>> for u8[src]

type Output = Vector4<u8>

The resulting type after applying the / operator.

impl Div<Vector4<u16>> for u16[src]

type Output = Vector4<u16>

The resulting type after applying the / operator.

impl<'a> Div<&'a Vector4<u16>> for u16[src]

type Output = Vector4<u16>

The resulting type after applying the / operator.

impl Div<Vector4<u32>> for u32[src]

type Output = Vector4<u32>

The resulting type after applying the / operator.

impl<'a> Div<&'a Vector4<u32>> for u32[src]

type Output = Vector4<u32>

The resulting type after applying the / operator.

impl Div<Vector4<u64>> for u64[src]

type Output = Vector4<u64>

The resulting type after applying the / operator.

impl<'a> Div<&'a Vector4<u64>> for u64[src]

type Output = Vector4<u64>

The resulting type after applying the / operator.

impl Div<Vector4<isize>> for isize[src]

type Output = Vector4<isize>

The resulting type after applying the / operator.

impl<'a> Div<&'a Vector4<isize>> for isize[src]

type Output = Vector4<isize>

The resulting type after applying the / operator.

impl Div<Vector4<i8>> for i8[src]

type Output = Vector4<i8>

The resulting type after applying the / operator.

impl<'a> Div<&'a Vector4<i8>> for i8[src]

type Output = Vector4<i8>

The resulting type after applying the / operator.

impl Div<Vector4<i16>> for i16[src]

type Output = Vector4<i16>

The resulting type after applying the / operator.

impl<'a> Div<&'a Vector4<i16>> for i16[src]

type Output = Vector4<i16>

The resulting type after applying the / operator.

impl Div<Vector4<i32>> for i32[src]

type Output = Vector4<i32>

The resulting type after applying the / operator.

impl<'a> Div<&'a Vector4<i32>> for i32[src]

type Output = Vector4<i32>

The resulting type after applying the / operator.

impl Div<Vector4<i64>> for i64[src]

type Output = Vector4<i64>

The resulting type after applying the / operator.

impl<'a> Div<&'a Vector4<i64>> for i64[src]

type Output = Vector4<i64>

The resulting type after applying the / operator.

impl Div<Vector4<f32>> for f32[src]

type Output = Vector4<f32>

The resulting type after applying the / operator.

impl<'a> Div<&'a Vector4<f32>> for f32[src]

type Output = Vector4<f32>

The resulting type after applying the / operator.

impl Div<Vector4<f64>> for f64[src]

type Output = Vector4<f64>

The resulting type after applying the / operator.

impl<'a> Div<&'a Vector4<f64>> for f64[src]

type Output = Vector4<f64>

The resulting type after applying the / operator.

impl<S: Neg<Output = S>> Neg for Vector4<S>[src]

type Output = Vector4<S>

The resulting type after applying the - operator.

impl<S: BaseNum + AddAssign<S>> AddAssign<Vector4<S>> for Vector4<S>[src]

impl<S: BaseNum + SubAssign<S>> SubAssign<Vector4<S>> for Vector4<S>[src]

impl<S: BaseNum + MulAssign<S>> MulAssign<S> for Vector4<S>[src]

impl<S: BaseNum + DivAssign<S>> DivAssign<S> for Vector4<S>[src]

impl<S: BaseNum + RemAssign<S>> RemAssign<S> for Vector4<S>[src]

impl<S> Index<usize> for Vector4<S>[src]

type Output = S

The returned type after indexing.

impl<S> Index<Range<usize>> for Vector4<S>[src]

type Output = [S]

The returned type after indexing.

impl<S> Index<RangeTo<usize>> for Vector4<S>[src]

type Output = [S]

The returned type after indexing.

impl<S> Index<RangeFrom<usize>> for Vector4<S>[src]

type Output = [S]

The returned type after indexing.

impl<S> Index<RangeFull> for Vector4<S>[src]

type Output = [S]

The returned type after indexing.

impl<S> IndexMut<usize> for Vector4<S>[src]

impl<S> IndexMut<Range<usize>> for Vector4<S>[src]

impl<S> IndexMut<RangeTo<usize>> for Vector4<S>[src]

impl<S> IndexMut<RangeFrom<usize>> for Vector4<S>[src]

impl<S> IndexMut<RangeFull> for Vector4<S>[src]

impl<S: BaseNum> Sum<Vector4<S>> for Vector4<S>[src]

impl<'a, S: 'a + BaseNum> Sum<&'a Vector4<S>> for Vector4<S>[src]

impl<S: BaseFloat> ApproxEq for Vector4<S>[src]

type Epsilon = S::Epsilon

Used for specifying relative comparisons.

fn relative_ne(
    &self,
    other: &Self,
    epsilon: Self::Epsilon,
    max_relative: Self::Epsilon
) -> bool
[src]

The inverse of ApproxEq::relative_eq.

fn ulps_ne(&self, other: &Self, epsilon: Self::Epsilon, max_ulps: u32) -> bool[src]

The inverse of ApproxEq::ulps_eq.

impl<S: BaseFloat + Rand> Rand for Vector4<S>[src]

impl<S: BaseNum> Zero for Vector4<S>[src]

fn set_zero(&mut self)[src]

Sets self to the additive identity element of Self, 0.

impl<S: Bounded> Bounded for Vector4<S>[src]

Auto Trait Implementations

impl<S> Unpin for Vector4<S> where
    S: Unpin

impl<S> Sync for Vector4<S> where
    S: Sync

impl<S> Send for Vector4<S> where
    S: Send

impl<S> UnwindSafe for Vector4<S> where
    S: UnwindSafe

impl<S> RefUnwindSafe for Vector4<S> where
    S: RefUnwindSafe

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, Rhs, Output> NumOps<Rhs, Output> for T where
    T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>, 
[src]

impl<T, Rhs> NumAssignOps<Rhs> for T where
    T: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs>, 
[src]