[−][src]Struct nalgebra::Id
The universal identity element wrt. a given operator, usually noted Id
with a
context-dependent subscript.
By default, it is the multiplicative identity element. It represents the degenerate set containing only the identity element of any group-like structure. It has no dimension known at compile-time. All its operations are no-ops.
Methods
impl<O> Id<O> where
O: Operator,
[src]
O: Operator,
Trait Implementations
impl<E> Transformation<E> for Id<Multiplicative> where
E: EuclideanSpace,
[src]
E: EuclideanSpace,
fn transform_point(&self, pt: &E) -> E
[src]
fn transform_vector(
&self,
v: &<E as EuclideanSpace>::Coordinates
) -> <E as EuclideanSpace>::Coordinates
[src]
&self,
v: &<E as EuclideanSpace>::Coordinates
) -> <E as EuclideanSpace>::Coordinates
impl<O> Eq for Id<O> where
O: Operator,
[src]
O: Operator,
impl<E> Translation<E> for Id<Multiplicative> where
E: EuclideanSpace,
[src]
E: EuclideanSpace,
fn to_vector(&self) -> <E as EuclideanSpace>::Coordinates
[src]
fn from_vector(
v: <E as EuclideanSpace>::Coordinates
) -> Option<Id<Multiplicative>>
[src]
v: <E as EuclideanSpace>::Coordinates
) -> Option<Id<Multiplicative>>
fn powf(&self, n: <E as EuclideanSpace>::RealField) -> Option<Self>
[src]
fn translation_between(a: &E, b: &E) -> Option<Self>
[src]
impl<O> AbstractMonoid<O> for Id<O> where
O: Operator,
[src]
O: Operator,
fn prop_operating_identity_element_is_noop_approx(args: (Self,)) -> bool where
Self: RelativeEq<Self>,
[src]
Self: RelativeEq<Self>,
fn prop_operating_identity_element_is_noop(args: (Self,)) -> bool where
Self: Eq,
[src]
Self: Eq,
impl<E> Rotation<E> for Id<Multiplicative> where
E: EuclideanSpace,
[src]
E: EuclideanSpace,
fn powf(&self, <E as EuclideanSpace>::RealField) -> Option<Id<Multiplicative>>
[src]
fn rotation_between(
a: &<E as EuclideanSpace>::Coordinates,
b: &<E as EuclideanSpace>::Coordinates
) -> Option<Id<Multiplicative>>
[src]
a: &<E as EuclideanSpace>::Coordinates,
b: &<E as EuclideanSpace>::Coordinates
) -> Option<Id<Multiplicative>>
fn scaled_rotation_between(
a: &<E as EuclideanSpace>::Coordinates,
b: &<E as EuclideanSpace>::Coordinates,
<E as EuclideanSpace>::RealField
) -> Option<Id<Multiplicative>>
[src]
a: &<E as EuclideanSpace>::Coordinates,
b: &<E as EuclideanSpace>::Coordinates,
<E as EuclideanSpace>::RealField
) -> Option<Id<Multiplicative>>
impl<E> Scaling<E> for Id<Multiplicative> where
E: EuclideanSpace,
[src]
E: EuclideanSpace,
fn to_real(&self) -> <E as EuclideanSpace>::RealField
[src]
fn from_real(r: <E as EuclideanSpace>::RealField) -> Option<Self>
[src]
fn powf(&self, n: <E as EuclideanSpace>::RealField) -> Option<Self>
[src]
fn scale_between(
a: &<E as EuclideanSpace>::Coordinates,
b: &<E as EuclideanSpace>::Coordinates
) -> Option<Self>
[src]
a: &<E as EuclideanSpace>::Coordinates,
b: &<E as EuclideanSpace>::Coordinates
) -> Option<Self>
impl<E> Isometry<E> for Id<Multiplicative> where
E: EuclideanSpace,
[src]
E: EuclideanSpace,
impl Div<Id<Multiplicative>> for Id<Multiplicative>
[src]
type Output = Id<Multiplicative>
The resulting type after applying the /
operator.
fn div(self, Id<Multiplicative>) -> Id<Multiplicative>
[src]
impl<O> TwoSidedInverse<O> for Id<O> where
O: Operator,
[src]
O: Operator,
fn two_sided_inverse(&self) -> Id<O>
[src]
fn two_sided_inverse_mut(&mut self)
[src]
impl<O> Copy for Id<O> where
O: Operator,
[src]
O: Operator,
impl<O> AbstractMagma<O> for Id<O> where
O: Operator,
[src]
O: Operator,
impl<O> MeetSemilattice for Id<O> where
O: Operator,
[src]
O: Operator,
impl<O> PartialOrd<Id<O>> for Id<O> where
O: Operator,
[src]
O: Operator,
fn partial_cmp(&self, &Id<O>) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl DivAssign<Id<Multiplicative>> for Id<Multiplicative>
[src]
fn div_assign(&mut self, Id<Multiplicative>)
[src]
impl<E> AffineTransformation<E> for Id<Multiplicative> where
E: EuclideanSpace,
[src]
E: EuclideanSpace,
type Rotation = Id<Multiplicative>
Type of the first rotation to be applied.
type NonUniformScaling = Id<Multiplicative>
Type of the non-uniform scaling to be applied.
type Translation = Id<Multiplicative>
The type of the pure translation part of this affine transformation.
fn decompose(
&self
) -> (Id<Multiplicative>, Id<Multiplicative>, Id<Multiplicative>, Id<Multiplicative>)
[src]
&self
) -> (Id<Multiplicative>, Id<Multiplicative>, Id<Multiplicative>, Id<Multiplicative>)
fn append_translation(
&self,
&<Id<Multiplicative> as AffineTransformation<E>>::Translation
) -> Id<Multiplicative>
[src]
&self,
&<Id<Multiplicative> as AffineTransformation<E>>::Translation
) -> Id<Multiplicative>
fn prepend_translation(
&self,
&<Id<Multiplicative> as AffineTransformation<E>>::Translation
) -> Id<Multiplicative>
[src]
&self,
&<Id<Multiplicative> as AffineTransformation<E>>::Translation
) -> Id<Multiplicative>
fn append_rotation(
&self,
&<Id<Multiplicative> as AffineTransformation<E>>::Rotation
) -> Id<Multiplicative>
[src]
&self,
&<Id<Multiplicative> as AffineTransformation<E>>::Rotation
) -> Id<Multiplicative>
fn prepend_rotation(
&self,
&<Id<Multiplicative> as AffineTransformation<E>>::Rotation
) -> Id<Multiplicative>
[src]
&self,
&<Id<Multiplicative> as AffineTransformation<E>>::Rotation
) -> Id<Multiplicative>
fn append_scaling(
&self,
&<Id<Multiplicative> as AffineTransformation<E>>::NonUniformScaling
) -> Id<Multiplicative>
[src]
&self,
&<Id<Multiplicative> as AffineTransformation<E>>::NonUniformScaling
) -> Id<Multiplicative>
fn prepend_scaling(
&self,
&<Id<Multiplicative> as AffineTransformation<E>>::NonUniformScaling
) -> Id<Multiplicative>
[src]
&self,
&<Id<Multiplicative> as AffineTransformation<E>>::NonUniformScaling
) -> Id<Multiplicative>
fn append_rotation_wrt_point(&self, r: &Self::Rotation, p: &E) -> Option<Self>
[src]
impl<O> RelativeEq<Id<O>> for Id<O> where
O: Operator,
[src]
O: Operator,
fn default_max_relative() -> <Id<O> as AbsDiffEq<Id<O>>>::Epsilon
[src]
fn relative_eq(
&self,
&Id<O>,
<Id<O> as AbsDiffEq<Id<O>>>::Epsilon,
<Id<O> as AbsDiffEq<Id<O>>>::Epsilon
) -> bool
[src]
&self,
&Id<O>,
<Id<O> as AbsDiffEq<Id<O>>>::Epsilon,
<Id<O> as AbsDiffEq<Id<O>>>::Epsilon
) -> bool
fn relative_ne(
&self,
other: &Rhs,
epsilon: Self::Epsilon,
max_relative: Self::Epsilon
) -> bool
[src]
&self,
other: &Rhs,
epsilon: Self::Epsilon,
max_relative: Self::Epsilon
) -> bool
impl MulAssign<Id<Multiplicative>> for Id<Multiplicative>
[src]
fn mul_assign(&mut self, Id<Multiplicative>)
[src]
impl<O> AbstractGroupAbelian<O> for Id<O> where
O: Operator,
[src]
O: Operator,
fn prop_is_commutative_approx(args: (Self, Self)) -> bool where
Self: RelativeEq<Self>,
[src]
Self: RelativeEq<Self>,
fn prop_is_commutative(args: (Self, Self)) -> bool where
Self: Eq,
[src]
Self: Eq,
impl Add<Id<Additive>> for Id<Additive>
[src]
type Output = Id<Additive>
The resulting type after applying the +
operator.
fn add(self, Id<Additive>) -> Id<Additive>
[src]
impl<O, T> SubsetOf<T> for Id<O> where
O: Operator,
T: Identity<O> + PartialEq<T>,
[src]
O: Operator,
T: Identity<O> + PartialEq<T>,
fn to_superset(&self) -> T
[src]
fn is_in_subset(t: &T) -> bool
[src]
unsafe fn from_superset_unchecked(&T) -> Id<O>
[src]
fn from_superset(element: &T) -> Option<Self>
[src]
impl<E> DirectIsometry<E> for Id<Multiplicative> where
E: EuclideanSpace,
[src]
E: EuclideanSpace,
impl<O> Clone for Id<O> where
O: Operator,
[src]
O: Operator,
impl<E> Similarity<E> for Id<Multiplicative> where
E: EuclideanSpace,
[src]
E: EuclideanSpace,
type Scaling = Id<Multiplicative>
The type of the pure (uniform) scaling part of this similarity transformation.
fn translation(
&self
) -> <Id<Multiplicative> as AffineTransformation<E>>::Translation
[src]
&self
) -> <Id<Multiplicative> as AffineTransformation<E>>::Translation
fn rotation(&self) -> <Id<Multiplicative> as AffineTransformation<E>>::Rotation
[src]
fn scaling(&self) -> <Id<Multiplicative> as Similarity<E>>::Scaling
[src]
fn translate_point(&self, pt: &E) -> E
[src]
fn rotate_point(&self, pt: &E) -> E
[src]
fn scale_point(&self, pt: &E) -> E
[src]
fn rotate_vector(
&self,
pt: &<E as EuclideanSpace>::Coordinates
) -> <E as EuclideanSpace>::Coordinates
[src]
&self,
pt: &<E as EuclideanSpace>::Coordinates
) -> <E as EuclideanSpace>::Coordinates
fn scale_vector(
&self,
pt: &<E as EuclideanSpace>::Coordinates
) -> <E as EuclideanSpace>::Coordinates
[src]
&self,
pt: &<E as EuclideanSpace>::Coordinates
) -> <E as EuclideanSpace>::Coordinates
fn inverse_translate_point(&self, pt: &E) -> E
[src]
fn inverse_rotate_point(&self, pt: &E) -> E
[src]
fn inverse_scale_point(&self, pt: &E) -> E
[src]
fn inverse_rotate_vector(
&self,
pt: &<E as EuclideanSpace>::Coordinates
) -> <E as EuclideanSpace>::Coordinates
[src]
&self,
pt: &<E as EuclideanSpace>::Coordinates
) -> <E as EuclideanSpace>::Coordinates
fn inverse_scale_vector(
&self,
pt: &<E as EuclideanSpace>::Coordinates
) -> <E as EuclideanSpace>::Coordinates
[src]
&self,
pt: &<E as EuclideanSpace>::Coordinates
) -> <E as EuclideanSpace>::Coordinates
impl<O> Debug for Id<O> where
O: Operator + Debug,
[src]
O: Operator + Debug,
impl<O> PartialEq<Id<O>> for Id<O> where
O: Operator,
[src]
O: Operator,
impl<O> Identity<O> for Id<O> where
O: Operator,
[src]
O: Operator,
impl<O> AbstractLoop<O> for Id<O> where
O: Operator,
[src]
O: Operator,
impl Mul<Id<Multiplicative>> for Id<Multiplicative>
[src]
type Output = Id<Multiplicative>
The resulting type after applying the *
operator.
fn mul(self, Id<Multiplicative>) -> Id<Multiplicative>
[src]
impl<O> JoinSemilattice for Id<O> where
O: Operator,
[src]
O: Operator,
impl One for Id<Multiplicative>
[src]
fn one() -> Id<Multiplicative>
[src]
fn set_one(&mut self)
[src]
fn is_one(&self) -> bool where
Self: PartialEq<Self>,
[src]
Self: PartialEq<Self>,
impl Zero for Id<Additive>
[src]
impl<E> ProjectiveTransformation<E> for Id<Multiplicative> where
E: EuclideanSpace,
[src]
E: EuclideanSpace,
fn inverse_transform_point(&self, pt: &E) -> E
[src]
fn inverse_transform_vector(
&self,
v: &<E as EuclideanSpace>::Coordinates
) -> <E as EuclideanSpace>::Coordinates
[src]
&self,
v: &<E as EuclideanSpace>::Coordinates
) -> <E as EuclideanSpace>::Coordinates
impl<O> AbstractSemigroup<O> for Id<O> where
O: Operator,
[src]
O: Operator,
fn prop_is_associative_approx(args: (Self, Self, Self)) -> bool where
Self: RelativeEq<Self>,
[src]
Self: RelativeEq<Self>,
fn prop_is_associative(args: (Self, Self, Self)) -> bool where
Self: Eq,
[src]
Self: Eq,
impl<E> OrthogonalTransformation<E> for Id<Multiplicative> where
E: EuclideanSpace,
[src]
E: EuclideanSpace,
impl<O> UlpsEq<Id<O>> for Id<O> where
O: Operator,
[src]
O: Operator,
fn default_max_ulps() -> u32
[src]
fn ulps_eq(&self, &Id<O>, <Id<O> as AbsDiffEq<Id<O>>>::Epsilon, u32) -> bool
[src]
fn ulps_ne(&self, other: &Rhs, epsilon: Self::Epsilon, max_ulps: u32) -> bool
[src]
impl AddAssign<Id<Additive>> for Id<Additive>
[src]
fn add_assign(&mut self, Id<Additive>)
[src]
impl<O> AbstractGroup<O> for Id<O> where
O: Operator,
[src]
O: Operator,
impl<O> AbsDiffEq<Id<O>> for Id<O> where
O: Operator,
[src]
O: Operator,
type Epsilon = Id<O>
Used for specifying relative comparisons.
fn default_epsilon() -> <Id<O> as AbsDiffEq<Id<O>>>::Epsilon
[src]
fn abs_diff_eq(&self, &Id<O>, <Id<O> as AbsDiffEq<Id<O>>>::Epsilon) -> bool
[src]
fn abs_diff_ne(&self, other: &Rhs, epsilon: Self::Epsilon) -> bool
[src]
impl<O> AbstractQuasigroup<O> for Id<O> where
O: Operator,
[src]
O: Operator,
fn prop_inv_is_latin_square_approx(args: (Self, Self)) -> bool where
Self: RelativeEq<Self>,
[src]
Self: RelativeEq<Self>,
fn prop_inv_is_latin_square(args: (Self, Self)) -> bool where
Self: Eq,
[src]
Self: Eq,
impl<O> Lattice for Id<O> where
O: Operator,
[src]
O: Operator,
fn meet_join(&self, other: &Self) -> (Self, Self)
[src]
fn partial_min(&'a self, other: &'a Self) -> Option<&'a Self>
[src]
fn partial_max(&'a self, other: &'a Self) -> Option<&'a Self>
[src]
fn partial_sort2(&'a self, other: &'a Self) -> Option<(&'a Self, &'a Self)>
[src]
fn partial_clamp(&'a self, min: &'a Self, max: &'a Self) -> Option<&'a Self>
[src]
impl<O> Display for Id<O> where
O: Operator,
[src]
O: Operator,
Auto Trait Implementations
impl<O> Send for Id<O> where
O: Send,
O: Send,
impl<O> Sync for Id<O> where
O: Sync,
O: Sync,
impl<O> Unpin for Id<O> where
O: Unpin,
O: Unpin,
impl<O> UnwindSafe for Id<O> where
O: UnwindSafe,
O: UnwindSafe,
impl<O> RefUnwindSafe for Id<O> where
O: RefUnwindSafe,
O: RefUnwindSafe,
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,
fn vzip(self) -> V
impl<SS, SP> SupersetOf<SS> for SP where
SS: SubsetOf<SP>,
[src]
SS: SubsetOf<SP>,
fn to_subset(&self) -> Option<SS>
[src]
fn is_in_subset(&self) -> bool
[src]
unsafe fn to_subset_unchecked(&self) -> SS
[src]
fn from_subset(element: &SS) -> SP
[src]
impl<T, Right> ClosedAdd<Right> for T where
T: Add<Right, Output = T> + AddAssign<Right>,
[src]
T: Add<Right, Output = T> + AddAssign<Right>,
impl<T, Right> ClosedMul<Right> for T where
T: Mul<Right, Output = T> + MulAssign<Right>,
[src]
T: Mul<Right, Output = T> + MulAssign<Right>,
impl<T, Right> ClosedDiv<Right> for T where
T: Div<Right, Output = T> + DivAssign<Right>,
[src]
T: Div<Right, Output = T> + DivAssign<Right>,
impl<T> AdditiveMagma for T where
T: AbstractMagma<Additive>,
[src]
T: AbstractMagma<Additive>,
impl<T> AdditiveSemigroup for T where
T: AbstractSemigroup<Additive> + ClosedAdd<T> + AdditiveMagma,
[src]
T: AbstractSemigroup<Additive> + ClosedAdd<T> + AdditiveMagma,
impl<T> AdditiveMonoid for T where
T: AbstractMonoid<Additive> + AdditiveSemigroup + Zero,
[src]
T: AbstractMonoid<Additive> + AdditiveSemigroup + Zero,
impl<T> MultiplicativeMagma for T where
T: AbstractMagma<Multiplicative>,
[src]
T: AbstractMagma<Multiplicative>,
impl<T> MultiplicativeQuasigroup for T where
T: AbstractQuasigroup<Multiplicative> + ClosedDiv<T> + MultiplicativeMagma,
[src]
T: AbstractQuasigroup<Multiplicative> + ClosedDiv<T> + MultiplicativeMagma,
impl<T> MultiplicativeLoop for T where
T: AbstractLoop<Multiplicative> + MultiplicativeQuasigroup + One,
[src]
T: AbstractLoop<Multiplicative> + MultiplicativeQuasigroup + One,
impl<T> MultiplicativeSemigroup for T where
T: AbstractSemigroup<Multiplicative> + ClosedMul<T> + MultiplicativeMagma,
[src]
T: AbstractSemigroup<Multiplicative> + ClosedMul<T> + MultiplicativeMagma,
impl<T> MultiplicativeMonoid for T where
T: AbstractMonoid<Multiplicative> + MultiplicativeSemigroup + One,
[src]
T: AbstractMonoid<Multiplicative> + MultiplicativeSemigroup + One,
impl<T> MultiplicativeGroup for T where
T: AbstractGroup<Multiplicative> + MultiplicativeLoop + MultiplicativeMonoid,
[src]
T: AbstractGroup<Multiplicative> + MultiplicativeLoop + MultiplicativeMonoid,
impl<T> MultiplicativeGroupAbelian for T where
T: AbstractGroupAbelian<Multiplicative> + MultiplicativeGroup,
[src]
T: AbstractGroupAbelian<Multiplicative> + MultiplicativeGroup,
impl<R, E> AffineTransformation<E> for R where
E: EuclideanSpace<RealField = R>,
R: RealField,
<E as EuclideanSpace>::Coordinates: ClosedMul<R>,
<E as EuclideanSpace>::Coordinates: ClosedDiv<R>,
<E as EuclideanSpace>::Coordinates: ClosedNeg,
[src]
E: EuclideanSpace<RealField = R>,
R: RealField,
<E as EuclideanSpace>::Coordinates: ClosedMul<R>,
<E as EuclideanSpace>::Coordinates: ClosedDiv<R>,
<E as EuclideanSpace>::Coordinates: ClosedNeg,
type Rotation = Id<Multiplicative>
Type of the first rotation to be applied.
type NonUniformScaling = R
Type of the non-uniform scaling to be applied.
type Translation = Id<Multiplicative>
The type of the pure translation part of this affine transformation.
fn decompose(
&self
) -> (Id<Multiplicative>, Id<Multiplicative>, R, Id<Multiplicative>)
[src]
&self
) -> (Id<Multiplicative>, Id<Multiplicative>, R, Id<Multiplicative>)
fn append_translation(&self, &<R as AffineTransformation<E>>::Translation) -> R
[src]
fn prepend_translation(&self, &<R as AffineTransformation<E>>::Translation) -> R
[src]
fn append_rotation(&self, &<R as AffineTransformation<E>>::Rotation) -> R
[src]
fn prepend_rotation(&self, &<R as AffineTransformation<E>>::Rotation) -> R
[src]
fn append_scaling(
&self,
s: &<R as AffineTransformation<E>>::NonUniformScaling
) -> R
[src]
&self,
s: &<R as AffineTransformation<E>>::NonUniformScaling
) -> R
fn prepend_scaling(
&self,
s: &<R as AffineTransformation<E>>::NonUniformScaling
) -> R
[src]
&self,
s: &<R as AffineTransformation<E>>::NonUniformScaling
) -> R
fn append_rotation_wrt_point(&self, r: &Self::Rotation, p: &E) -> Option<Self>
[src]
impl<R, E> ProjectiveTransformation<E> for R where
E: EuclideanSpace<RealField = R>,
R: RealField,
<E as EuclideanSpace>::Coordinates: ClosedMul<R>,
<E as EuclideanSpace>::Coordinates: ClosedDiv<R>,
<E as EuclideanSpace>::Coordinates: ClosedNeg,
[src]
E: EuclideanSpace<RealField = R>,
R: RealField,
<E as EuclideanSpace>::Coordinates: ClosedMul<R>,
<E as EuclideanSpace>::Coordinates: ClosedDiv<R>,
<E as EuclideanSpace>::Coordinates: ClosedNeg,
fn inverse_transform_point(&self, pt: &E) -> E
[src]
fn inverse_transform_vector(
&self,
v: &<E as EuclideanSpace>::Coordinates
) -> <E as EuclideanSpace>::Coordinates
[src]
&self,
v: &<E as EuclideanSpace>::Coordinates
) -> <E as EuclideanSpace>::Coordinates
impl<R, E> Scaling<E> for R where
E: EuclideanSpace<RealField = R>,
R: RealField + SubsetOf<R>,
<E as EuclideanSpace>::Coordinates: ClosedMul<R>,
<E as EuclideanSpace>::Coordinates: ClosedDiv<R>,
<E as EuclideanSpace>::Coordinates: ClosedNeg,
[src]
E: EuclideanSpace<RealField = R>,
R: RealField + SubsetOf<R>,
<E as EuclideanSpace>::Coordinates: ClosedMul<R>,
<E as EuclideanSpace>::Coordinates: ClosedDiv<R>,
<E as EuclideanSpace>::Coordinates: ClosedNeg,
fn to_real(&self) -> <E as EuclideanSpace>::RealField
[src]
fn from_real(r: <E as EuclideanSpace>::RealField) -> Option<R>
[src]
fn powf(&self, n: <E as EuclideanSpace>::RealField) -> Option<R>
[src]
fn scale_between(
a: &<E as EuclideanSpace>::Coordinates,
b: &<E as EuclideanSpace>::Coordinates
) -> Option<R>
[src]
a: &<E as EuclideanSpace>::Coordinates,
b: &<E as EuclideanSpace>::Coordinates
) -> Option<R>
impl<R, E> Similarity<E> for R where
E: EuclideanSpace<RealField = R>,
R: RealField + SubsetOf<R>,
<E as EuclideanSpace>::Coordinates: ClosedMul<R>,
<E as EuclideanSpace>::Coordinates: ClosedDiv<R>,
<E as EuclideanSpace>::Coordinates: ClosedNeg,
[src]
E: EuclideanSpace<RealField = R>,
R: RealField + SubsetOf<R>,
<E as EuclideanSpace>::Coordinates: ClosedMul<R>,
<E as EuclideanSpace>::Coordinates: ClosedDiv<R>,
<E as EuclideanSpace>::Coordinates: ClosedNeg,
type Scaling = R
The type of the pure (uniform) scaling part of this similarity transformation.
fn translation(&self) -> <R as AffineTransformation<E>>::Translation
[src]
fn rotation(&self) -> <R as AffineTransformation<E>>::Rotation
[src]
fn scaling(&self) -> <R as Similarity<E>>::Scaling
[src]
fn translate_point(&self, pt: &E) -> E
[src]
fn rotate_point(&self, pt: &E) -> E
[src]
fn scale_point(&self, pt: &E) -> E
[src]
fn rotate_vector(
&self,
pt: &<E as EuclideanSpace>::Coordinates
) -> <E as EuclideanSpace>::Coordinates
[src]
&self,
pt: &<E as EuclideanSpace>::Coordinates
) -> <E as EuclideanSpace>::Coordinates
fn scale_vector(
&self,
pt: &<E as EuclideanSpace>::Coordinates
) -> <E as EuclideanSpace>::Coordinates
[src]
&self,
pt: &<E as EuclideanSpace>::Coordinates
) -> <E as EuclideanSpace>::Coordinates
fn inverse_translate_point(&self, pt: &E) -> E
[src]
fn inverse_rotate_point(&self, pt: &E) -> E
[src]
fn inverse_scale_point(&self, pt: &E) -> E
[src]
fn inverse_rotate_vector(
&self,
pt: &<E as EuclideanSpace>::Coordinates
) -> <E as EuclideanSpace>::Coordinates
[src]
&self,
pt: &<E as EuclideanSpace>::Coordinates
) -> <E as EuclideanSpace>::Coordinates
fn inverse_scale_vector(
&self,
pt: &<E as EuclideanSpace>::Coordinates
) -> <E as EuclideanSpace>::Coordinates
[src]
&self,
pt: &<E as EuclideanSpace>::Coordinates
) -> <E as EuclideanSpace>::Coordinates
impl<R, E> Transformation<E> for R where
E: EuclideanSpace<RealField = R>,
R: RealField,
<E as EuclideanSpace>::Coordinates: ClosedMul<R>,
<E as EuclideanSpace>::Coordinates: ClosedDiv<R>,
<E as EuclideanSpace>::Coordinates: ClosedNeg,
[src]
E: EuclideanSpace<RealField = R>,
R: RealField,
<E as EuclideanSpace>::Coordinates: ClosedMul<R>,
<E as EuclideanSpace>::Coordinates: ClosedDiv<R>,
<E as EuclideanSpace>::Coordinates: ClosedNeg,
fn transform_point(&self, pt: &E) -> E
[src]
fn transform_vector(
&self,
v: &<E as EuclideanSpace>::Coordinates
) -> <E as EuclideanSpace>::Coordinates
[src]
&self,
v: &<E as EuclideanSpace>::Coordinates
) -> <E as EuclideanSpace>::Coordinates