[][src]Struct batbox::Vec4

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

4-d vector.

Fields

x: Ty: Tz: Tw: T

Implementations

impl<T> Vec4<T>[src]

pub fn xy(self) -> Vec2<T>[src]

pub fn xyz(self) -> Vec3<T>[src]

pub fn map<U, F: Fn(T) -> U>(self, f: F) -> Vec4<U>[src]

impl<T: Copy + Num> Vec4<T>[src]

pub fn dot(a: Self, b: Self) -> T[src]

Calculate dot product of two vectors.

Examples

use batbox::*;
assert_eq!(Vec4::dot(vec4(1, 2, 3, 4), vec4(3, 4, 5, 6)), 50);

Trait Implementations

impl<T: Add<Output = T>> Add<Vec4<T>> for Vec4<T>[src]

type Output = Self

The resulting type after applying the + operator.

impl<T: AddAssign> AddAssign<Vec4<T>> for Vec4<T>[src]

impl<T: Clone> Clone for Vec4<T>[src]

impl<T: Copy> Copy for Vec4<T>[src]

impl<T: Debug> Debug for Vec4<T>[src]

impl<T> Deref for Vec4<T>[src]

type Target = [T; 4]

The resulting type after dereferencing.

impl<T> DerefMut for Vec4<T>[src]

impl<'de, T> Deserialize<'de> for Vec4<T> where
    T: Deserialize<'de>, 
[src]

impl<T: Display> Display for Vec4<T>[src]

impl<T: Copy + Div<Output = T>> Div<T> for Vec4<T>[src]

type Output = Self

The resulting type after applying the / operator.

impl<T: Copy + DivAssign> DivAssign<T> for Vec4<T>[src]

impl<T: Eq> Eq for Vec4<T>[src]

impl<T> From<[T; 4]> for Vec4<T>[src]

impl<T: Hash> Hash for Vec4<T>[src]

impl<T: Copy + Mul<Output = T>> Mul<T> for Vec4<T>[src]

type Output = Self

The resulting type after applying the * operator.

impl<T: Num + Copy> Mul<Vec4<T>> for Mat4<T>[src]

type Output = Vec4<T>

The resulting type after applying the * operator.

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

type Output = Vec4<f32>

The resulting type after applying the * operator.

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

type Output = Vec4<f64>

The resulting type after applying the * operator.

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

type Output = Vec4<i16>

The resulting type after applying the * operator.

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

type Output = Vec4<i32>

The resulting type after applying the * operator.

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

type Output = Vec4<i64>

The resulting type after applying the * operator.

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

type Output = Vec4<i8>

The resulting type after applying the * operator.

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

type Output = Vec4<isize>

The resulting type after applying the * operator.

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

type Output = Vec4<u16>

The resulting type after applying the * operator.

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

type Output = Vec4<u32>

The resulting type after applying the * operator.

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

type Output = Vec4<u64>

The resulting type after applying the * operator.

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

type Output = Vec4<u8>

The resulting type after applying the * operator.

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

type Output = Vec4<usize>

The resulting type after applying the * operator.

impl<T: Copy + MulAssign> MulAssign<T> for Vec4<T>[src]

impl<T: Neg<Output = T>> Neg for Vec4<T>[src]

type Output = Self

The resulting type after applying the - operator.

impl<T: PartialEq> PartialEq<Vec4<T>> for Vec4<T>[src]

impl<T> Schematic for Vec4<T> where
    T: Schematic + 'static,
    T: Schematic + 'static,
    T: Schematic + 'static,
    T: Schematic + 'static,
    T: Schematic
[src]

impl<T> Serialize for Vec4<T> where
    T: Serialize
[src]

impl<T> StructuralEq for Vec4<T>[src]

impl<T> StructuralPartialEq for Vec4<T>[src]

impl<T: Sub<Output = T>> Sub<Vec4<T>> for Vec4<T>[src]

type Output = Self

The resulting type after applying the - operator.

impl<T: SubAssign> SubAssign<Vec4<T>> for Vec4<T>[src]

impl<T> Trans for Vec4<T> where
    T: Trans,
    T: Trans,
    T: Trans,
    T: Trans
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Vec4<T> where
    T: RefUnwindSafe

impl<T> Send for Vec4<T> where
    T: Send

impl<T> Sync for Vec4<T> where
    T: Sync

impl<T> Unpin for Vec4<T> where
    T: Unpin

impl<T> UnwindSafe for Vec4<T> where
    T: UnwindSafe

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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<V, T> VZip<V> for T where
    V: MultiLane<T>,