Struct lnkit::prelude::geometry::Translation[][src]

#[repr(C)]
pub struct Translation<T, const D: usize> { pub vector: Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>, }

A translation.

Fields

vector: Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>

The translation coordinates, i.e., how much is added to a point’s coordinates when it is translated.

Implementations

impl<T, const D: usize> Translation<T, D> where
    T: Scalar
[src]

pub fn from_vector(
    vector: Matrix<T, Const<D>, Const<1_usize>, ArrayStorage<T, D, 1_usize>>
) -> Translation<T, D>
[src]

👎 Deprecated:

Use ::from instead.

Creates a new translation from the given vector.

#[must_use = "Did you mean to use inverse_mut()?"]
pub fn inverse(&self) -> Translation<T, D> where
    T: ClosedNeg, 
[src]

Inverts self.

Example

let t = Translation3::new(1.0, 2.0, 3.0);
assert_eq!(t * t.inverse(), Translation3::identity());
assert_eq!(t.inverse() * t, Translation3::identity());

// Work in all dimensions.
let t = Translation2::new(1.0, 2.0);
assert_eq!(t * t.inverse(), Translation2::identity());
assert_eq!(t.inverse() * t, Translation2::identity());

pub fn to_homogeneous(
    &self
) -> Matrix<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <DefaultAllocator as Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>>::Buffer> where
    T: Zero + One,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

Converts this translation into its equivalent homogeneous transformation matrix.

Example

let t = Translation3::new(10.0, 20.0, 30.0);
let expected = Matrix4::new(1.0, 0.0, 0.0, 10.0,
                            0.0, 1.0, 0.0, 20.0,
                            0.0, 0.0, 1.0, 30.0,
                            0.0, 0.0, 0.0, 1.0);
assert_eq!(t.to_homogeneous(), expected);

let t = Translation2::new(10.0, 20.0);
let expected = Matrix3::new(1.0, 0.0, 10.0,
                            0.0, 1.0, 20.0,
                            0.0, 0.0, 1.0);
assert_eq!(t.to_homogeneous(), expected);

pub fn inverse_mut(&mut self) where
    T: ClosedNeg, 
[src]

Inverts self in-place.

Example

let t = Translation3::new(1.0, 2.0, 3.0);
let mut inv_t = Translation3::new(1.0, 2.0, 3.0);
inv_t.inverse_mut();
assert_eq!(t * inv_t, Translation3::identity());
assert_eq!(inv_t * t, Translation3::identity());

// Work in all dimensions.
let t = Translation2::new(1.0, 2.0);
let mut inv_t = Translation2::new(1.0, 2.0);
inv_t.inverse_mut();
assert_eq!(t * inv_t, Translation2::identity());
assert_eq!(inv_t * t, Translation2::identity());

impl<T, const D: usize> Translation<T, D> where
    T: Scalar + ClosedAdd<T>, 
[src]

pub fn transform_point(&self, pt: &Point<T, D>) -> Point<T, D>[src]

Translate the given point.

This is the same as the multiplication self * pt.

Example

let t = Translation3::new(1.0, 2.0, 3.0);
let transformed_point = t.transform_point(&Point3::new(4.0, 5.0, 6.0));
assert_eq!(transformed_point, Point3::new(5.0, 7.0, 9.0));

impl<T, const D: usize> Translation<T, D> where
    T: Scalar + ClosedSub<T>, 
[src]

pub fn inverse_transform_point(&self, pt: &Point<T, D>) -> Point<T, D>[src]

Translate the given point by the inverse of this translation.

Example

let t = Translation3::new(1.0, 2.0, 3.0);
let transformed_point = t.inverse_transform_point(&Point3::new(4.0, 5.0, 6.0));
assert_eq!(transformed_point, Point3::new(3.0, 3.0, 3.0));

impl<T, const D: usize> Translation<T, D> where
    T: Scalar
[src]

pub fn identity() -> Translation<T, D> where
    T: Zero
[src]

Creates a new identity translation.

Example

let t = Translation2::identity();
let p = Point2::new(1.0, 2.0);
assert_eq!(t * p, p);

// Works in all dimensions.
let t = Translation3::identity();
let p = Point3::new(1.0, 2.0, 3.0);
assert_eq!(t * p, p);

pub fn cast<To>(self) -> Translation<To, D> where
    To: Scalar,
    Translation<To, D>: SupersetOf<Translation<T, D>>, 
[src]

Cast the components of self to another type.

Example

let tra = Translation2::new(1.0f64, 2.0);
let tra2 = tra.cast::<f32>();
assert_eq!(tra2, Translation2::new(1.0f32, 2.0));

impl<T> Translation<T, 1_usize>[src]

pub const fn new(x: T) -> Translation<T, 1_usize>[src]

Initializes this translation from its components.

Example

let t = Translation1::new(1.0);
assert!(t.vector.x == 1.0);

impl<T> Translation<T, 2_usize>[src]

pub const fn new(x: T, y: T) -> Translation<T, 2_usize>[src]

Initializes this translation from its components.

Example

let t = Translation2::new(1.0, 2.0);
assert!(t.vector.x == 1.0 && t.vector.y == 2.0);

impl<T> Translation<T, 3_usize>[src]

pub const fn new(x: T, y: T, z: T) -> Translation<T, 3_usize>[src]

Initializes this translation from its components.

Example

let t = Translation3::new(1.0, 2.0, 3.0);
assert!(t.vector.x == 1.0 && t.vector.y == 2.0 && t.vector.z == 3.0);

impl<T> Translation<T, 4_usize>[src]

pub const fn new(x: T, y: T, z: T, w: T) -> Translation<T, 4_usize>[src]

Initializes this translation from its components.

Example

let t = Translation4::new(1.0, 2.0, 3.0, 4.0);
assert!(t.vector.x == 1.0 && t.vector.y == 2.0 && t.vector.z == 3.0 && t.vector.w == 4.0);

impl<T> Translation<T, 5_usize>[src]

pub const fn new(x: T, y: T, z: T, w: T, a: T) -> Translation<T, 5_usize>[src]

Initializes this translation from its components.

Example

let t = Translation5::new(1.0, 2.0, 3.0, 4.0, 5.0);
assert!(t.vector.x == 1.0 && t.vector.y == 2.0 && t.vector.z == 3.0 && t.vector.w == 4.0 && t.vector.a == 5.0);

impl<T> Translation<T, 6_usize>[src]

pub const fn new(x: T, y: T, z: T, w: T, a: T, b: T) -> Translation<T, 6_usize>[src]

Initializes this translation from its components.

Example

let t = Translation6::new(1.0, 2.0, 3.0, 4.0, 5.0, 6.0);
assert!(t.vector.x == 1.0 && t.vector.y == 2.0 && t.vector.z == 3.0 && t.vector.w == 4.0 && t.vector.a == 5.0 && t.vector.b == 6.0);

Trait Implementations

impl<T, const D: usize> AbsDiffEq<Translation<T, D>> for Translation<T, D> where
    T: Scalar + AbsDiffEq<T>,
    <T as AbsDiffEq<T>>::Epsilon: Copy
[src]

type Epsilon = <T as AbsDiffEq<T>>::Epsilon

Used for specifying relative comparisons.

impl<T, const D: usize> Clone for Translation<T, D> where
    T: Scalar,
    <DefaultAllocator as Allocator<T, Const<D>, Const<1_usize>>>::Buffer: Clone
[src]

impl<T, const D: usize> Copy for Translation<T, D> where
    T: Scalar + Copy,
    <DefaultAllocator as Allocator<T, Const<D>, Const<1_usize>>>::Buffer: Copy
[src]

impl<T, const D: usize> Debug for Translation<T, D> where
    T: Debug
[src]

impl<T> Deref for Translation<T, 2_usize> where
    T: Scalar
[src]

type Target = XY<T>

The resulting type after dereferencing.

impl<T> Deref for Translation<T, 1_usize> where
    T: Scalar
[src]

type Target = X<T>

The resulting type after dereferencing.

impl<T> Deref for Translation<T, 3_usize> where
    T: Scalar
[src]

type Target = XYZ<T>

The resulting type after dereferencing.

impl<T> Deref for Translation<T, 6_usize> where
    T: Scalar
[src]

type Target = XYZWAB<T>

The resulting type after dereferencing.

impl<T> Deref for Translation<T, 4_usize> where
    T: Scalar
[src]

type Target = XYZW<T>

The resulting type after dereferencing.

impl<T> Deref for Translation<T, 5_usize> where
    T: Scalar
[src]

type Target = XYZWA<T>

The resulting type after dereferencing.

impl<T> DerefMut for Translation<T, 6_usize> where
    T: Scalar
[src]

impl<T> DerefMut for Translation<T, 3_usize> where
    T: Scalar
[src]

impl<T> DerefMut for Translation<T, 2_usize> where
    T: Scalar
[src]

impl<T> DerefMut for Translation<T, 1_usize> where
    T: Scalar
[src]

impl<T> DerefMut for Translation<T, 5_usize> where
    T: Scalar
[src]

impl<T> DerefMut for Translation<T, 4_usize> where
    T: Scalar
[src]

impl<'a, T, const D: usize> Deserialize<'a> for Translation<T, D> where
    T: Scalar,
    <DefaultAllocator as Allocator<T, Const<D>, Const<1_usize>>>::Buffer: Deserialize<'a>, 
[src]

impl<T, const D: usize> Display for Translation<T, D> where
    T: Scalar + Display
[src]

impl<'a, 'b, T> Div<&'a Unit<DualQuaternion<T>>> for &'b Translation<T, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Unit<DualQuaternion<T>>

The resulting type after applying the / operator.

impl<'b, T, C, const D: usize> Div<&'b Transform<T, C, D>> for Translation<T, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

The resulting type after applying the / operator.

impl<'a, 'b, T, C, const D: usize> Div<&'b Transform<T, C, D>> for &'a Translation<T, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

The resulting type after applying the / operator.

impl<'b, T> Div<&'b Translation<T, 3_usize>> for Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Unit<DualQuaternion<T>>

The resulting type after applying the / operator.

impl<'a, 'b, T> Div<&'b Translation<T, 3_usize>> for &'a Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Unit<DualQuaternion<T>>

The resulting type after applying the / operator.

impl<'a, 'b, T, C, const D: usize> Div<&'b Translation<T, D>> for &'a Transform<T, C, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

The resulting type after applying the / operator.

impl<'a, 'b, T, const D: usize> Div<&'b Translation<T, D>> for &'a Translation<T, D> where
    T: ClosedSub<T> + Scalar,
    ShapeConstraint: SameNumberOfRows<Const<D>, Const<D>>,
    ShapeConstraint: SameNumberOfColumns<Const<1_usize>, Const<1_usize>>,
    <ShapeConstraint as SameNumberOfRows<Const<D>, Const<D>>>::Representative == Const<D>,
    <ShapeConstraint as SameNumberOfColumns<Const<1_usize>, Const<1_usize>>>::Representative == Const<1_usize>, 
[src]

type Output = Translation<T, D>

The resulting type after applying the / operator.

impl<'b, T, const D: usize> Div<&'b Translation<T, D>> for Translation<T, D> where
    T: ClosedSub<T> + Scalar,
    ShapeConstraint: SameNumberOfRows<Const<D>, Const<D>>,
    ShapeConstraint: SameNumberOfColumns<Const<1_usize>, Const<1_usize>>,
    <ShapeConstraint as SameNumberOfRows<Const<D>, Const<D>>>::Representative == Const<D>,
    <ShapeConstraint as SameNumberOfColumns<Const<1_usize>, Const<1_usize>>>::Representative == Const<1_usize>, 
[src]

type Output = Translation<T, D>

The resulting type after applying the / operator.

impl<'b, T, C, const D: usize> Div<&'b Translation<T, D>> for Transform<T, C, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

The resulting type after applying the / operator.

impl<'b, T> Div<&'b Unit<DualQuaternion<T>>> for Translation<T, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Unit<DualQuaternion<T>>

The resulting type after applying the / operator.

impl<T, C, const D: usize> Div<Transform<T, C, D>> for Translation<T, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

The resulting type after applying the / operator.

impl<'a, T, C, const D: usize> Div<Transform<T, C, D>> for &'a Translation<T, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

The resulting type after applying the / operator.

impl<'a, T> Div<Translation<T, 3_usize>> for &'a Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Unit<DualQuaternion<T>>

The resulting type after applying the / operator.

impl<T> Div<Translation<T, 3_usize>> for Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Unit<DualQuaternion<T>>

The resulting type after applying the / operator.

impl<T, C, const D: usize> Div<Translation<T, D>> for Transform<T, C, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

The resulting type after applying the / operator.

impl<'a, T, C, const D: usize> Div<Translation<T, D>> for &'a Transform<T, C, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

The resulting type after applying the / operator.

impl<T, const D: usize> Div<Translation<T, D>> for Translation<T, D> where
    T: ClosedSub<T> + Scalar,
    ShapeConstraint: SameNumberOfRows<Const<D>, Const<D>>,
    ShapeConstraint: SameNumberOfColumns<Const<1_usize>, Const<1_usize>>,
    <ShapeConstraint as SameNumberOfRows<Const<D>, Const<D>>>::Representative == Const<D>,
    <ShapeConstraint as SameNumberOfColumns<Const<1_usize>, Const<1_usize>>>::Representative == Const<1_usize>, 
[src]

type Output = Translation<T, D>

The resulting type after applying the / operator.

impl<'a, T, const D: usize> Div<Translation<T, D>> for &'a Translation<T, D> where
    T: ClosedSub<T> + Scalar,
    ShapeConstraint: SameNumberOfRows<Const<D>, Const<D>>,
    ShapeConstraint: SameNumberOfColumns<Const<1_usize>, Const<1_usize>>,
    <ShapeConstraint as SameNumberOfRows<Const<D>, Const<D>>>::Representative == Const<D>,
    <ShapeConstraint as SameNumberOfColumns<Const<1_usize>, Const<1_usize>>>::Representative == Const<1_usize>, 
[src]

type Output = Translation<T, D>

The resulting type after applying the / operator.

impl<'a, T> Div<Unit<DualQuaternion<T>>> for &'a Translation<T, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Unit<DualQuaternion<T>>

The resulting type after applying the / operator.

impl<T> Div<Unit<DualQuaternion<T>>> for Translation<T, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Unit<DualQuaternion<T>>

The resulting type after applying the / operator.

impl<'b, T> DivAssign<&'b Translation<T, 3_usize>> for Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

impl<'b, T, C, const D: usize> DivAssign<&'b Translation<T, D>> for Transform<T, C, D> where
    C: TCategory,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

impl<'b, T, const D: usize> DivAssign<&'b Translation<T, D>> for Translation<T, D> where
    T: Scalar + ClosedSub<T>, 
[src]

impl<T> DivAssign<Translation<T, 3_usize>> for Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

impl<T, C, const D: usize> DivAssign<Translation<T, D>> for Transform<T, C, D> where
    C: TCategory,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

impl<T, const D: usize> DivAssign<Translation<T, D>> for Translation<T, D> where
    T: Scalar + ClosedSub<T>, 
[src]

impl<T, const D: usize> Eq for Translation<T, D> where
    T: Scalar + Eq
[src]

impl<T, const D: usize> From<[Translation<<T as SimdValue>::Element, D>; 16]> for Translation<T, D> where
    T: Scalar + PrimitiveSimdValue + From<[<T as SimdValue>::Element; 16]>,
    <T as SimdValue>::Element: Scalar
[src]

impl<T, const D: usize> From<[Translation<<T as SimdValue>::Element, D>; 2]> for Translation<T, D> where
    T: Scalar + PrimitiveSimdValue + From<[<T as SimdValue>::Element; 2]>,
    <T as SimdValue>::Element: Scalar
[src]

impl<T, const D: usize> From<[Translation<<T as SimdValue>::Element, D>; 4]> for Translation<T, D> where
    T: Scalar + PrimitiveSimdValue + From<[<T as SimdValue>::Element; 4]>,
    <T as SimdValue>::Element: Scalar
[src]

impl<T, const D: usize> From<[Translation<<T as SimdValue>::Element, D>; 8]> for Translation<T, D> where
    T: Scalar + PrimitiveSimdValue + From<[<T as SimdValue>::Element; 8]>,
    <T as SimdValue>::Element: Scalar
[src]

impl<T, const D: usize> From<Matrix<T, Const<D>, Const<1_usize>, <DefaultAllocator as Allocator<T, Const<D>, Const<1_usize>>>::Buffer>> for Translation<T, D> where
    T: Scalar
[src]

impl<T, const D: usize> From<Translation<T, D>> for Matrix<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <DefaultAllocator as Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>>::Buffer> where
    T: Scalar + Zero + One,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>,
    DefaultAllocator: Allocator<T, Const<D>, Const<1_usize>>, 
[src]

impl<T, R, const D: usize> From<Translation<T, D>> for Isometry<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>, 
[src]

impl<T, const D: usize> Hash for Translation<T, D> where
    T: Scalar + Hash,
    <DefaultAllocator as Allocator<T, Const<D>, Const<1_usize>>>::Buffer: Hash
[src]

impl<'a, 'b, T> Mul<&'a Unit<DualQuaternion<T>>> for &'b Translation<T, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Unit<DualQuaternion<T>>

The resulting type after applying the * operator.

impl<'b, T, R, const D: usize> Mul<&'b Isometry<T, R, D>> for Translation<T, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Isometry<T, R, D>

The resulting type after applying the * operator.

impl<'a, 'b, T, R, const D: usize> Mul<&'b Isometry<T, R, D>> for &'a Translation<T, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Isometry<T, R, D>

The resulting type after applying the * operator.

impl<'b, T, const D: usize> Mul<&'b Point<T, D>> for Translation<T, D> where
    T: ClosedAdd<T> + Scalar,
    ShapeConstraint: SameNumberOfRows<Const<D>, Const<D>>,
    ShapeConstraint: SameNumberOfColumns<Const<1_usize>, Const<1_usize>>,
    <ShapeConstraint as SameNumberOfRows<Const<D>, Const<D>>>::Representative == Const<D>,
    <ShapeConstraint as SameNumberOfColumns<Const<1_usize>, Const<1_usize>>>::Representative == Const<1_usize>, 
[src]

type Output = Point<T, D>

The resulting type after applying the * operator.

impl<'a, 'b, T, const D: usize> Mul<&'b Point<T, D>> for &'a Translation<T, D> where
    T: ClosedAdd<T> + Scalar,
    ShapeConstraint: SameNumberOfRows<Const<D>, Const<D>>,
    ShapeConstraint: SameNumberOfColumns<Const<1_usize>, Const<1_usize>>,
    <ShapeConstraint as SameNumberOfRows<Const<D>, Const<D>>>::Representative == Const<D>,
    <ShapeConstraint as SameNumberOfColumns<Const<1_usize>, Const<1_usize>>>::Representative == Const<1_usize>, 
[src]

type Output = Point<T, D>

The resulting type after applying the * operator.

impl<'b, T, const D: usize> Mul<&'b Rotation<T, D>> for Translation<T, D> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Isometry<T, Rotation<T, D>, D>

The resulting type after applying the * operator.

impl<'a, 'b, T, const D: usize> Mul<&'b Rotation<T, D>> for &'a Translation<T, D> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Isometry<T, Rotation<T, D>, D>

The resulting type after applying the * operator.

impl<'a, 'b, T, R, const D: usize> Mul<&'b Similarity<T, R, D>> for &'a Translation<T, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Similarity<T, R, D>

The resulting type after applying the * operator.

impl<'b, T, R, const D: usize> Mul<&'b Similarity<T, R, D>> for Translation<T, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Similarity<T, R, D>

The resulting type after applying the * operator.

impl<'a, 'b, T, C, const D: usize> Mul<&'b Transform<T, C, D>> for &'a Translation<T, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

The resulting type after applying the * operator.

impl<'b, T, C, const D: usize> Mul<&'b Transform<T, C, D>> for Translation<T, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

The resulting type after applying the * operator.

impl<'b, T> Mul<&'b Translation<T, 2_usize>> for Unit<Complex<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Isometry<T, Unit<Complex<T>>, 2_usize>

The resulting type after applying the * operator.

impl<'a, 'b, T> Mul<&'b Translation<T, 2_usize>> for &'a Unit<Complex<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Isometry<T, Unit<Complex<T>>, 2_usize>

The resulting type after applying the * operator.

impl<'b, T> Mul<&'b Translation<T, 3_usize>> for Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Unit<DualQuaternion<T>>

The resulting type after applying the * operator.

impl<'b, T> Mul<&'b Translation<T, 3_usize>> for Unit<Quaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Isometry<T, Unit<Quaternion<T>>, 3_usize>

The resulting type after applying the * operator.

impl<'a, 'b, T> Mul<&'b Translation<T, 3_usize>> for &'a Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Unit<DualQuaternion<T>>

The resulting type after applying the * operator.

impl<'a, 'b, T> Mul<&'b Translation<T, 3_usize>> for &'a Unit<Quaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Isometry<T, Unit<Quaternion<T>>, 3_usize>

The resulting type after applying the * operator.

impl<'a, 'b, T, C, const D: usize> Mul<&'b Translation<T, D>> for &'a Transform<T, C, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

The resulting type after applying the * operator.

impl<'a, 'b, T, R, const D: usize> Mul<&'b Translation<T, D>> for &'a Similarity<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Similarity<T, R, D>

The resulting type after applying the * operator.

impl<'b, T, R, const D: usize> Mul<&'b Translation<T, D>> for Isometry<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Isometry<T, R, D>

The resulting type after applying the * operator.

impl<'b, T, C, const D: usize> Mul<&'b Translation<T, D>> for Transform<T, C, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

The resulting type after applying the * operator.

impl<'b, T, const D: usize> Mul<&'b Translation<T, D>> for Rotation<T, D> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Isometry<T, Rotation<T, D>, D>

The resulting type after applying the * operator.

impl<'a, 'b, T, R, const D: usize> Mul<&'b Translation<T, D>> for &'a Isometry<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Isometry<T, R, D>

The resulting type after applying the * operator.

impl<'b, T, R, const D: usize> Mul<&'b Translation<T, D>> for Similarity<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Similarity<T, R, D>

The resulting type after applying the * operator.

impl<'a, 'b, T, const D: usize> Mul<&'b Translation<T, D>> for &'a Translation<T, D> where
    T: ClosedAdd<T> + Scalar,
    ShapeConstraint: SameNumberOfRows<Const<D>, Const<D>>,
    ShapeConstraint: SameNumberOfColumns<Const<1_usize>, Const<1_usize>>,
    <ShapeConstraint as SameNumberOfRows<Const<D>, Const<D>>>::Representative == Const<D>,
    <ShapeConstraint as SameNumberOfColumns<Const<1_usize>, Const<1_usize>>>::Representative == Const<1_usize>, 
[src]

type Output = Translation<T, D>

The resulting type after applying the * operator.

impl<'b, T, const D: usize> Mul<&'b Translation<T, D>> for Translation<T, D> where
    T: ClosedAdd<T> + Scalar,
    ShapeConstraint: SameNumberOfRows<Const<D>, Const<D>>,
    ShapeConstraint: SameNumberOfColumns<Const<1_usize>, Const<1_usize>>,
    <ShapeConstraint as SameNumberOfRows<Const<D>, Const<D>>>::Representative == Const<D>,
    <ShapeConstraint as SameNumberOfColumns<Const<1_usize>, Const<1_usize>>>::Representative == Const<1_usize>, 
[src]

type Output = Translation<T, D>

The resulting type after applying the * operator.

impl<'a, 'b, T, const D: usize> Mul<&'b Translation<T, D>> for &'a Rotation<T, D> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Isometry<T, Rotation<T, D>, D>

The resulting type after applying the * operator.

impl<'b, T> Mul<&'b Unit<Complex<T>>> for Translation<T, 2_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Isometry<T, Unit<Complex<T>>, 2_usize>

The resulting type after applying the * operator.

impl<'a, 'b, T> Mul<&'b Unit<Complex<T>>> for &'a Translation<T, 2_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Isometry<T, Unit<Complex<T>>, 2_usize>

The resulting type after applying the * operator.

impl<'b, T> Mul<&'b Unit<DualQuaternion<T>>> for Translation<T, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Unit<DualQuaternion<T>>

The resulting type after applying the * operator.

impl<'b, T> Mul<&'b Unit<Quaternion<T>>> for Translation<T, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Isometry<T, Unit<Quaternion<T>>, 3_usize>

The resulting type after applying the * operator.

impl<'a, 'b, T> Mul<&'b Unit<Quaternion<T>>> for &'a Translation<T, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Isometry<T, Unit<Quaternion<T>>, 3_usize>

The resulting type after applying the * operator.

impl<T, R, const D: usize> Mul<Isometry<T, R, D>> for Translation<T, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Isometry<T, R, D>

The resulting type after applying the * operator.

impl<'a, T, R, const D: usize> Mul<Isometry<T, R, D>> for &'a Translation<T, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Isometry<T, R, D>

The resulting type after applying the * operator.

impl<T, const D: usize> Mul<Point<T, D>> for Translation<T, D> where
    T: ClosedAdd<T> + Scalar,
    ShapeConstraint: SameNumberOfRows<Const<D>, Const<D>>,
    ShapeConstraint: SameNumberOfColumns<Const<1_usize>, Const<1_usize>>,
    <ShapeConstraint as SameNumberOfRows<Const<D>, Const<D>>>::Representative == Const<D>,
    <ShapeConstraint as SameNumberOfColumns<Const<1_usize>, Const<1_usize>>>::Representative == Const<1_usize>, 
[src]

type Output = Point<T, D>

The resulting type after applying the * operator.

impl<'a, T, const D: usize> Mul<Point<T, D>> for &'a Translation<T, D> where
    T: ClosedAdd<T> + Scalar,
    ShapeConstraint: SameNumberOfRows<Const<D>, Const<D>>,
    ShapeConstraint: SameNumberOfColumns<Const<1_usize>, Const<1_usize>>,
    <ShapeConstraint as SameNumberOfRows<Const<D>, Const<D>>>::Representative == Const<D>,
    <ShapeConstraint as SameNumberOfColumns<Const<1_usize>, Const<1_usize>>>::Representative == Const<1_usize>, 
[src]

type Output = Point<T, D>

The resulting type after applying the * operator.

impl<'a, T, const D: usize> Mul<Rotation<T, D>> for &'a Translation<T, D> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Isometry<T, Rotation<T, D>, D>

The resulting type after applying the * operator.

impl<T, const D: usize> Mul<Rotation<T, D>> for Translation<T, D> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Isometry<T, Rotation<T, D>, D>

The resulting type after applying the * operator.

impl<T, R, const D: usize> Mul<Similarity<T, R, D>> for Translation<T, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Similarity<T, R, D>

The resulting type after applying the * operator.

impl<'a, T, R, const D: usize> Mul<Similarity<T, R, D>> for &'a Translation<T, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Similarity<T, R, D>

The resulting type after applying the * operator.

impl<T, C, const D: usize> Mul<Transform<T, C, D>> for Translation<T, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

The resulting type after applying the * operator.

impl<'a, T, C, const D: usize> Mul<Transform<T, C, D>> for &'a Translation<T, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

The resulting type after applying the * operator.

impl<T> Mul<Translation<T, 2_usize>> for Unit<Complex<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Isometry<T, Unit<Complex<T>>, 2_usize>

The resulting type after applying the * operator.

impl<'a, T> Mul<Translation<T, 2_usize>> for &'a Unit<Complex<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Isometry<T, Unit<Complex<T>>, 2_usize>

The resulting type after applying the * operator.

impl<'a, T> Mul<Translation<T, 3_usize>> for &'a Unit<Quaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Isometry<T, Unit<Quaternion<T>>, 3_usize>

The resulting type after applying the * operator.

impl<T> Mul<Translation<T, 3_usize>> for Unit<Quaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Isometry<T, Unit<Quaternion<T>>, 3_usize>

The resulting type after applying the * operator.

impl<'a, T> Mul<Translation<T, 3_usize>> for &'a Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Unit<DualQuaternion<T>>

The resulting type after applying the * operator.

impl<T> Mul<Translation<T, 3_usize>> for Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Unit<DualQuaternion<T>>

The resulting type after applying the * operator.

impl<'a, T, R, const D: usize> Mul<Translation<T, D>> for &'a Similarity<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Similarity<T, R, D>

The resulting type after applying the * operator.

impl<T, C, const D: usize> Mul<Translation<T, D>> for Transform<T, C, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

The resulting type after applying the * operator.

impl<'a, T, C, const D: usize> Mul<Translation<T, D>> for &'a Transform<T, C, D> where
    C: TCategoryMul<TAffine>,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

type Output = Transform<T, <C as TCategoryMul<TAffine>>::Representative, D>

The resulting type after applying the * operator.

impl<'a, T, const D: usize> Mul<Translation<T, D>> for &'a Translation<T, D> where
    T: ClosedAdd<T> + Scalar,
    ShapeConstraint: SameNumberOfRows<Const<D>, Const<D>>,
    ShapeConstraint: SameNumberOfColumns<Const<1_usize>, Const<1_usize>>,
    <ShapeConstraint as SameNumberOfRows<Const<D>, Const<D>>>::Representative == Const<D>,
    <ShapeConstraint as SameNumberOfColumns<Const<1_usize>, Const<1_usize>>>::Representative == Const<1_usize>, 
[src]

type Output = Translation<T, D>

The resulting type after applying the * operator.

impl<'a, T, const D: usize> Mul<Translation<T, D>> for &'a Rotation<T, D> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Isometry<T, Rotation<T, D>, D>

The resulting type after applying the * operator.

impl<T, R, const D: usize> Mul<Translation<T, D>> for Similarity<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Similarity<T, R, D>

The resulting type after applying the * operator.

impl<'a, T, R, const D: usize> Mul<Translation<T, D>> for &'a Isometry<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Isometry<T, R, D>

The resulting type after applying the * operator.

impl<T, const D: usize> Mul<Translation<T, D>> for Translation<T, D> where
    T: ClosedAdd<T> + Scalar,
    ShapeConstraint: SameNumberOfRows<Const<D>, Const<D>>,
    ShapeConstraint: SameNumberOfColumns<Const<1_usize>, Const<1_usize>>,
    <ShapeConstraint as SameNumberOfRows<Const<D>, Const<D>>>::Representative == Const<D>,
    <ShapeConstraint as SameNumberOfColumns<Const<1_usize>, Const<1_usize>>>::Representative == Const<1_usize>, 
[src]

type Output = Translation<T, D>

The resulting type after applying the * operator.

impl<T, const D: usize> Mul<Translation<T, D>> for Rotation<T, D> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Isometry<T, Rotation<T, D>, D>

The resulting type after applying the * operator.

impl<T, R, const D: usize> Mul<Translation<T, D>> for Isometry<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Isometry<T, R, D>

The resulting type after applying the * operator.

impl<'a, T> Mul<Unit<Complex<T>>> for &'a Translation<T, 2_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Isometry<T, Unit<Complex<T>>, 2_usize>

The resulting type after applying the * operator.

impl<T> Mul<Unit<Complex<T>>> for Translation<T, 2_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Isometry<T, Unit<Complex<T>>, 2_usize>

The resulting type after applying the * operator.

impl<T> Mul<Unit<DualQuaternion<T>>> for Translation<T, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Unit<DualQuaternion<T>>

The resulting type after applying the * operator.

impl<'a, T> Mul<Unit<DualQuaternion<T>>> for &'a Translation<T, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Unit<DualQuaternion<T>>

The resulting type after applying the * operator.

impl<T> Mul<Unit<Quaternion<T>>> for Translation<T, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Isometry<T, Unit<Quaternion<T>>, 3_usize>

The resulting type after applying the * operator.

impl<'a, T> Mul<Unit<Quaternion<T>>> for &'a Translation<T, 3_usize> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

type Output = Isometry<T, Unit<Quaternion<T>>, 3_usize>

The resulting type after applying the * operator.

impl<'b, T> MulAssign<&'b Translation<T, 3_usize>> for Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

impl<'b, T, R, const D: usize> MulAssign<&'b Translation<T, D>> for Isometry<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField
[src]

impl<'b, T, C, const D: usize> MulAssign<&'b Translation<T, D>> for Transform<T, C, D> where
    C: TCategory,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

impl<'b, T, R, const D: usize> MulAssign<&'b Translation<T, D>> for Similarity<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField
[src]

impl<'b, T, const D: usize> MulAssign<&'b Translation<T, D>> for Translation<T, D> where
    T: Scalar + ClosedAdd<T>, 
[src]

impl<T> MulAssign<Translation<T, 3_usize>> for Unit<DualQuaternion<T>> where
    T: SimdRealField,
    <T as SimdValue>::Element: SimdRealField
[src]

impl<T, const D: usize> MulAssign<Translation<T, D>> for Translation<T, D> where
    T: Scalar + ClosedAdd<T>, 
[src]

impl<T, R, const D: usize> MulAssign<Translation<T, D>> for Similarity<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField
[src]

impl<T, R, const D: usize> MulAssign<Translation<T, D>> for Isometry<T, R, D> where
    T: SimdRealField,
    R: AbstractRotation<T, D>,
    <T as SimdValue>::Element: SimdRealField
[src]

impl<T, C, const D: usize> MulAssign<Translation<T, D>> for Transform<T, C, D> where
    C: TCategory,
    T: Scalar + Zero + One + ClosedAdd<T> + ClosedMul<T> + RealField,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

impl<T, const D: usize> One for Translation<T, D> where
    T: Scalar + Zero + ClosedAdd<T>, 
[src]

impl<T, const D: usize> PartialEq<Translation<T, D>> for Translation<T, D> where
    T: Scalar + PartialEq<T>, 
[src]

impl<T, const D: usize> RelativeEq<Translation<T, D>> for Translation<T, D> where
    T: Scalar + RelativeEq<T>,
    <T as AbsDiffEq<T>>::Epsilon: Copy
[src]

impl<T, const D: usize> Serialize for Translation<T, D> where
    T: Scalar,
    <DefaultAllocator as Allocator<T, Const<D>, Const<1_usize>>>::Buffer: Serialize
[src]

impl<T, const D: usize> SimdValue for Translation<T, D> where
    T: Scalar + SimdValue,
    <T as SimdValue>::Element: Scalar
[src]

type Element = Translation<<T as SimdValue>::Element, D>

The type of the elements of each lane of this SIMD value.

type SimdBool = <T as SimdValue>::SimdBool

Type of the result of comparing two SIMD values like self.

impl<T1, T2, R, const D: usize> SubsetOf<Isometry<T2, R, D>> for Translation<T1, D> where
    R: AbstractRotation<T2, D>,
    T1: RealField,
    T2: RealField + SupersetOf<T1>, 
[src]

impl<T1, T2, const D: usize> SubsetOf<Matrix<T2, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <DefaultAllocator as Allocator<T2, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>>::Buffer>> for Translation<T1, D> where
    T1: RealField,
    T2: RealField + SupersetOf<T1>,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T1, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>,
    DefaultAllocator: Allocator<T2, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

impl<T1, T2, R, const D: usize> SubsetOf<Similarity<T2, R, D>> for Translation<T1, D> where
    R: AbstractRotation<T2, D>,
    T1: RealField,
    T2: RealField + SupersetOf<T1>, 
[src]

impl<T1, T2, C, const D: usize> SubsetOf<Transform<T2, C, D>> for Translation<T1, D> where
    C: SuperTCategoryOf<TAffine>,
    T1: RealField,
    T2: RealField + SupersetOf<T1>,
    Const<D>: DimNameAdd<Const<1_usize>>,
    DefaultAllocator: Allocator<T1, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>,
    DefaultAllocator: Allocator<T2, <Const<D> as DimNameAdd<Const<1_usize>>>::Output, <Const<D> as DimNameAdd<Const<1_usize>>>::Output>, 
[src]

impl<T1, T2, const D: usize> SubsetOf<Translation<T2, D>> for Translation<T1, D> where
    T1: Scalar,
    T2: Scalar + SupersetOf<T1>, 
[src]

impl<T1, T2> SubsetOf<Unit<DualQuaternion<T2>>> for Translation<T1, 3_usize> where
    T1: RealField,
    T2: RealField + SupersetOf<T1>, 
[src]

impl<T, const D: usize> UlpsEq<Translation<T, D>> for Translation<T, D> where
    T: Scalar + UlpsEq<T>,
    <T as AbsDiffEq<T>>::Epsilon: Copy
[src]

Auto Trait Implementations

impl<T, const D: usize> RefUnwindSafe for Translation<T, D> where
    T: RefUnwindSafe

impl<T, const D: usize> Send for Translation<T, D> where
    T: Send

impl<T, const D: usize> Sync for Translation<T, D> where
    T: Sync

impl<T, const D: usize> Unpin for Translation<T, D> where
    T: Unpin

impl<T, const D: usize> UnwindSafe for Translation<T, D> 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, U> Cast<U> for T where
    U: FromCast<T>, 

impl<T, Right> ClosedDiv<Right> for T where
    T: Div<Right, Output = T> + DivAssign<Right>, 

impl<T, Right> ClosedMul<Right> for T where
    T: Mul<Right, Output = T> + MulAssign<Right>, 

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

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Any + Send + Sync

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

impl<T> FromBits<T> for T

impl<T> FromCast<T> for T

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

impl<T, U> IntoBits<U> for T where
    U: FromBits<T>, 

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Scalar for T where
    T: Copy + PartialEq<T> + Debug + Any
[src]

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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>,