Trait three_d::core::math::One [−][src]
Required methods
pub fn one() -> Self[src]
Returns the multiplicative identity element of Self, 1.
Purity
This function should return the same result at all times regardless of
external mutable state, for example values stored in TLS or in
static muts.
Provided methods
pub fn set_one(&mut self)[src]
Sets self to the multiplicative identity element of Self, 1.
pub fn is_one(&self) -> bool where
Self: PartialEq<Self>, [src]
Self: PartialEq<Self>,
Returns true if self is equal to the multiplicative identity.
For performance reasons, it's best to implement this manually.
After a semver bump, this method will be required, and the
where Self: PartialEq bound will be removed.
Implementations on Foreign Types
impl<S> One for Matrix4<S> where
S: BaseFloat, [src]
S: BaseFloat,
impl<S> One for Matrix3<S> where
S: BaseFloat, [src]
S: BaseFloat,
impl<S> One for Basis2<S> where
S: BaseFloat, [src]
S: BaseFloat,
impl<S> One for Quaternion<S> where
S: BaseFloat, [src]
S: BaseFloat,
pub fn one() -> Quaternion<S>[src]
impl<S> One for Matrix2<S> where
S: BaseFloat, [src]
S: BaseFloat,
impl<S> One for Basis3<S> where
S: BaseFloat, [src]
S: BaseFloat,
impl One for u128[src]
impl One for i64[src]
impl One for u32[src]
impl One for f32[src]
impl One for isize[src]
impl One for i128[src]
impl One for i16[src]
impl One for u64[src]
impl<T> One for Wrapping<T> where
T: One,
Wrapping<T>: Mul<Wrapping<T>>,
<Wrapping<T> as Mul<Wrapping<T>>>::Output == Wrapping<T>, [src]
T: One,
Wrapping<T>: Mul<Wrapping<T>>,
<Wrapping<T> as Mul<Wrapping<T>>>::Output == Wrapping<T>,
impl One for f64[src]
impl One for i8[src]
impl One for usize[src]
impl One for i32[src]
impl One for u8[src]
impl One for u16[src]
impl<T> One for Ratio<T> where
T: Clone + Integer, [src]
T: Clone + Integer,
impl<T> One for NotNan<T> where
T: FloatCore,
T: FloatCore,