[][src]Struct static_math::vector6::V6

pub struct V6<T>(_);

Implementations

impl<T> V6<T>[src]

pub fn new(input: [T; 6]) -> V6<T>[src]

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

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

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

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

calculate the euclidean norm of the vector

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

normalize the current vector and return a new one

Trait Implementations

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

type Output = Self

The resulting type after applying the + operator.

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

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

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

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

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

type Target = [T; 6]

The resulting type after dereferencing.

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

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

impl<T> From<[T; 6]> for V6<T>[src]

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

type Output = V6<T>

The resulting type after applying the * operator.

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

type Output = V6<T>

The resulting type after applying the * operator.

impl<T: Num + Copy + Sum> Mul<V6<T>> for M66<T>[src]

type Output = V6<T>

The resulting type after applying the * operator.

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

type Output = T

The resulting type after applying the * operator.

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

type Output = V6<f32>

The resulting type after applying the * operator.

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

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

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

type Output = Self

The resulting type after applying the - operator.

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

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

Auto Trait Implementations

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

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

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

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

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