[][src]Struct aljabar::Orthonormal

pub struct Orthonormal<T, const DIM: usize>(_);

A Matrix that forms an orthonormal basis. Commonly known as a rotation matrix.

Trait Implementations

impl<T, const DIMS: usize> Rotation<DIMS> for Orthonormal<T, { DIMS }> where
    Matrix<T, { DIMS }, { DIMS }>: Mul<Vector<T, { DIMS }>, Output = Vector<T, { DIMS }>>, 
[src]

type Scalar = T

fn rotate_point(
    self,
    p: Point<Self::Scalar, { DIMS }>
) -> Point<Self::Scalar, { DIMS }>
[src]

impl<T> From<T> for Orthonormal<T, 2> where
    T: Angle + Clone
[src]

impl<T> From<Euler<T>> for Orthonormal<T, 3> where
    T: Angle + Copy + Clone
[src]

Auto Trait Implementations

impl<const DIM: usize, T> Sync for Orthonormal<T, DIM> where
    T: Sync

impl<const DIM: usize, T> Send for Orthonormal<T, DIM> where
    T: Send

impl<const DIM: usize, T> Unpin for Orthonormal<T, DIM> where
    T: Unpin

impl<const DIM: usize, T> RefUnwindSafe for Orthonormal<T, DIM> where
    T: RefUnwindSafe

impl<const DIM: usize, T> UnwindSafe for Orthonormal<T, DIM> where
    T: UnwindSafe

Blanket Implementations

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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