Struct alga::general::Id [−][src]
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.
Implementations
impl<O: Operator> Id<O>
[src]
Trait Implementations
impl<O: Operator> AbsDiffEq<Id<O>> for Id<O>
[src]
type Epsilon = Id<O>
Used for specifying relative comparisons.
fn default_epsilon() -> Self::Epsilon
[src]
fn abs_diff_eq(&self, _: &Self, _: Self::Epsilon) -> bool
[src]
pub fn abs_diff_ne(&self, other: &Rhs, epsilon: Self::Epsilon) -> bool
[src]
impl<O: Operator> AbstractGroup<O> for Id<O>
[src]
impl<O: Operator> AbstractGroupAbelian<O> for Id<O>
[src]
fn prop_is_commutative_approx(args: (Self, Self)) -> bool where
Self: RelativeEq,
[src]
Self: RelativeEq,
fn prop_is_commutative(args: (Self, Self)) -> bool where
Self: Eq,
[src]
Self: Eq,
impl<O: Operator> AbstractLoop<O> for Id<O>
[src]
impl<O: Operator> AbstractMagma<O> for Id<O>
[src]
impl<O: Operator> AbstractMonoid<O> for Id<O>
[src]
fn prop_operating_identity_element_is_noop_approx(args: (Self,)) -> bool where
Self: RelativeEq,
[src]
Self: RelativeEq,
fn prop_operating_identity_element_is_noop(args: (Self,)) -> bool where
Self: Eq,
[src]
Self: Eq,
impl<O: Operator> AbstractQuasigroup<O> for Id<O>
[src]
fn prop_inv_is_latin_square_approx(args: (Self, Self)) -> bool where
Self: RelativeEq,
[src]
Self: RelativeEq,
fn prop_inv_is_latin_square(args: (Self, Self)) -> bool where
Self: Eq,
[src]
Self: Eq,
impl<O: Operator> AbstractSemigroup<O> for Id<O>
[src]
fn prop_is_associative_approx(args: (Self, Self, Self)) -> bool where
Self: RelativeEq,
[src]
Self: RelativeEq,
fn prop_is_associative(args: (Self, 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 AddAssign<Id<Additive>> for Id<Additive>
[src]
fn add_assign(&mut self, _: Id<Additive>)
[src]
impl<E: EuclideanSpace> AffineTransformation<E> for Id
[src]
type Rotation = Id
Type of the first rotation to be applied.
type NonUniformScaling = Id
Type of the non-uniform scaling to be applied.
type Translation = Id
The type of the pure translation part of this affine transformation.
fn decompose(&self) -> (Id, Id, Id, Id)
[src]
fn append_translation(&self, _: &Self::Translation) -> Self
[src]
fn prepend_translation(&self, _: &Self::Translation) -> Self
[src]
fn append_rotation(&self, _: &Self::Rotation) -> Self
[src]
fn prepend_rotation(&self, _: &Self::Rotation) -> Self
[src]
fn append_scaling(&self, _: &Self::NonUniformScaling) -> Self
[src]
fn prepend_scaling(&self, _: &Self::NonUniformScaling) -> Self
[src]
fn append_rotation_wrt_point(&self, r: &Self::Rotation, p: &E) -> Option<Self>
[src]
impl<O: Operator> Clone for Id<O>
[src]
impl<O: Operator> Copy for Id<O>
[src]
impl<O: Debug + Operator> Debug for Id<O>
[src]
impl<E: EuclideanSpace> DirectIsometry<E> for Id
[src]
impl<O: Operator> Display for Id<O>
[src]
impl Div<Id<Multiplicative>> for Id
[src]
impl DivAssign<Id<Multiplicative>> for Id
[src]
fn div_assign(&mut self, _: Id)
[src]
impl<O: Operator> Eq for Id<O>
[src]
impl<O: Operator> Identity<O> for Id<O>
[src]
impl<E: EuclideanSpace> Isometry<E> for Id
[src]
impl<O: Operator> JoinSemilattice for Id<O>
[src]
impl<O: Operator> Lattice for Id<O>
[src]
fn meet_join(&self, other: &Self) -> (Self, Self)
[src]
fn partial_min<'a>(&'a self, other: &'a Self) -> Option<&'a Self>
[src]
fn partial_max<'a>(&'a self, other: &'a Self) -> Option<&'a Self>
[src]
fn partial_sort2<'a>(&'a self, other: &'a Self) -> Option<(&'a Self, &'a Self)>
[src]
fn partial_clamp<'a>(&'a self, min: &'a Self, max: &'a Self) -> Option<&'a Self>
[src]
impl<O: Operator> MeetSemilattice for Id<O>
[src]
impl Mul<Id<Multiplicative>> for Id
[src]
impl MulAssign<Id<Multiplicative>> for Id
[src]
fn mul_assign(&mut self, _: Id)
[src]
impl One for Id
[src]
fn one() -> Id
[src]
pub fn set_one(&mut self)
[src]
pub fn is_one(&self) -> bool where
Self: PartialEq<Self>,
[src]
Self: PartialEq<Self>,
impl<E: EuclideanSpace> OrthogonalTransformation<E> for Id
[src]
impl<O: Operator> PartialEq<Id<O>> for Id<O>
[src]
impl<O: Operator> PartialOrd<Id<O>> for Id<O>
[src]
fn partial_cmp(&self, _: &Id<O>) -> Option<Ordering>
[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<E: EuclideanSpace> ProjectiveTransformation<E> for Id
[src]
fn inverse_transform_point(&self, pt: &E) -> E
[src]
fn inverse_transform_vector(&self, v: &E::Coordinates) -> E::Coordinates
[src]
impl<O: Operator> RelativeEq<Id<O>> for Id<O>
[src]
fn default_max_relative() -> Self::Epsilon
[src]
fn relative_eq(&self, _: &Self, _: Self::Epsilon, _: Self::Epsilon) -> bool
[src]
pub 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<E: EuclideanSpace> Rotation<E> for Id
[src]
fn powf(&self, _: E::RealField) -> Option<Self>
[src]
fn rotation_between(a: &E::Coordinates, b: &E::Coordinates) -> Option<Self>
[src]
fn scaled_rotation_between(
a: &E::Coordinates,
b: &E::Coordinates,
_: E::RealField
) -> Option<Self>
[src]
a: &E::Coordinates,
b: &E::Coordinates,
_: E::RealField
) -> Option<Self>
impl<E: EuclideanSpace> Scaling<E> for Id
[src]
fn to_real(&self) -> E::RealField
[src]
fn from_real(r: E::RealField) -> Option<Self>
[src]
fn powf(&self, n: E::RealField) -> Option<Self>
[src]
fn scale_between(a: &E::Coordinates, b: &E::Coordinates) -> Option<Self>
[src]
impl<E: EuclideanSpace> Similarity<E> for Id
[src]
type Scaling = Id
The type of the pure (uniform) scaling part of this similarity transformation.
fn translation(&self) -> Self::Translation
[src]
fn rotation(&self) -> Self::Rotation
[src]
fn scaling(&self) -> Self::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::Coordinates) -> E::Coordinates
[src]
fn scale_vector(&self, pt: &E::Coordinates) -> E::Coordinates
[src]
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::Coordinates) -> E::Coordinates
[src]
fn inverse_scale_vector(&self, pt: &E::Coordinates) -> E::Coordinates
[src]
impl<O: Operator, T: PartialEq + Identity<O>> SubsetOf<T> for Id<O>
[src]
fn to_superset(&self) -> T
[src]
fn is_in_subset(t: &T) -> bool
[src]
unsafe fn from_superset_unchecked(_: &T) -> Self
[src]
fn from_superset(element: &T) -> Option<Self>
[src]
impl<E: EuclideanSpace> Transformation<E> for Id
[src]
fn transform_point(&self, pt: &E) -> E
[src]
fn transform_vector(&self, v: &E::Coordinates) -> E::Coordinates
[src]
impl<E: EuclideanSpace> Translation<E> for Id
[src]
fn to_vector(&self) -> E::Coordinates
[src]
fn from_vector(v: E::Coordinates) -> Option<Self>
[src]
fn powf(&self, n: E::RealField) -> Option<Self>
[src]
fn translation_between(a: &E, b: &E) -> Option<Self>
[src]
impl<O: Operator> TwoSidedInverse<O> for Id<O>
[src]
fn two_sided_inverse(&self) -> Self
[src]
fn two_sided_inverse_mut(&mut self)
[src]
impl<O: Operator> UlpsEq<Id<O>> for Id<O>
[src]
fn default_max_ulps() -> u32
[src]
fn ulps_eq(&self, _: &Self, _: Self::Epsilon, _: u32) -> bool
[src]
pub fn ulps_ne(
&self,
other: &Rhs,
epsilon: Self::Epsilon,
max_ulps: u32
) -> bool
[src]
&self,
other: &Rhs,
epsilon: Self::Epsilon,
max_ulps: u32
) -> bool
impl Zero for Id<Additive>
[src]
Auto Trait Implementations
impl<O> RefUnwindSafe for Id<O> where
O: RefUnwindSafe,
O: RefUnwindSafe,
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,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub 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.
pub 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>,