[][src]Trait na::FastMul

pub trait FastMul<T> {
    type Output;
    fn fast_mul(&self, right: &T) -> Self::Output;
}

Associated Types

type Output

Loading content...

Required methods

fn fast_mul(&self, right: &T) -> Self::Output

Loading content...

Implementors

impl FastMul<Matrix<f32, U4, U1, <DefaultAllocator as Allocator<f32, U4, U1>>::Buffer>> for Matrix4<f32>[src]

type Output = Vector4<f32>

impl FastMul<Matrix<f32, U4, U4, <DefaultAllocator as Allocator<f32, U4, U4>>::Buffer>> for Matrix4<f32>[src]

type Output = Matrix4<f32>

impl<T: RealField> FastMul<Matrix<T, U2, U1, <DefaultAllocator as Allocator<T, U2, U1>>::Buffer>> for Matrix2<T>[src]

type Output = Vector2<T>

impl<T: RealField> FastMul<Matrix<T, U2, U2, <DefaultAllocator as Allocator<T, U2, U2>>::Buffer>> for Matrix2<T>[src]

type Output = Matrix2<T>

impl<T: RealField> FastMul<Matrix<T, U3, U1, <DefaultAllocator as Allocator<T, U3, U1>>::Buffer>> for Matrix3<T>[src]

type Output = Vector3<T>

impl<T: RealField> FastMul<Matrix<T, U3, U3, <DefaultAllocator as Allocator<T, U3, U3>>::Buffer>> for Matrix3<T>[src]

type Output = Matrix3<T>

Loading content...