[][src]Struct static_math::vector3::V3

pub struct V3<T>(_);

Implementations

impl<T> V3<T>[src]

pub fn new(input: [T; 3]) -> V3<T>[src]

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

pub fn zeros() -> V3<T>[src]

pub fn cross(&self, rhs: Self) -> Self[src]

calculate the cross product

impl<T: Float> V3<T>[src]

pub fn norm2(&self) -> T[src]

calculate the euclidean norm of the vector

pub fn normalize(&self) -> Result<Self, VectorErrors>[src]

normalize the current vector

Trait Implementations

impl<T: Num + Copy> Add<V3<T>> for V3<T>[src]

type Output = Self

The resulting type after applying the + operator.

impl<T: Num + Copy> AddAssign<V3<T>> for V3<T>[src]

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

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

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

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

type Target = [T; 3]

The resulting type after dereferencing.

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

impl<T: Num + Display> Display for V3<T>[src]

impl<T> From<[T; 3]> for V3<T>[src]

impl<T: Num + Copy> Mul<M33<T>> for V3<T>[src]

type Output = V3<T>

The resulting type after applying the * operator.

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

type Output = V3<T>

The resulting type after applying the * operator.

impl<T: Num + Copy> Mul<V3<T>> for M33<T>[src]

type Output = V3<T>

The resulting type after applying the * operator.

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

type Output = T

The resulting type after applying the * operator.

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

type Output = V3<f32>

The resulting type after applying the * operator.

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

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

impl<T: Num + Copy> Sub<V3<T>> for V3<T>[src]

type Output = Self

The resulting type after applying the - operator.

impl<T: Num + Copy> SubAssign<V3<T>> for V3<T>[src]

impl<T: Num + Copy> Zero for V3<T>[src]

Auto Trait Implementations

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

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

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

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

impl<T> UnwindSafe for V3<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> 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.