Struct nalgebra::base::coordinates::M6x6 [−][src]
#[repr(C)]pub struct M6x6<N: Scalar> {}Show 36 fields
pub m11: N, pub m21: N, pub m31: N, pub m41: N, pub m51: N, pub m61: N, pub m12: N, pub m22: N, pub m32: N, pub m42: N, pub m52: N, pub m62: N, pub m13: N, pub m23: N, pub m33: N, pub m43: N, pub m53: N, pub m63: N, pub m14: N, pub m24: N, pub m34: N, pub m44: N, pub m54: N, pub m64: N, pub m15: N, pub m25: N, pub m35: N, pub m45: N, pub m55: N, pub m65: N, pub m16: N, pub m26: N, pub m36: N, pub m46: N, pub m56: N, pub m66: N,
Expand description
Data structure used to provide access to matrix and vector coordinates with the dot
notation, e.g., v.x is the same as v[0] for a vector.
Fields
m11: Nm21: Nm31: Nm41: Nm51: Nm61: Nm12: Nm22: Nm32: Nm42: Nm52: Nm62: Nm13: Nm23: Nm33: Nm43: Nm53: Nm63: Nm14: Nm24: Nm34: Nm44: Nm54: Nm64: Nm15: Nm25: Nm35: Nm45: Nm55: Nm65: Nm16: Nm26: Nm36: Nm46: Nm56: Nm66: NTrait Implementations
Auto Trait Implementations
impl<N> RefUnwindSafe for M6x6<N> where
N: RefUnwindSafe,
impl<N> UnwindSafe for M6x6<N> where
N: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
The inverse inclusion map: attempts to construct self from the equivalent element of its
superset. Read more
Checks if self is actually part of its subset T (and can be converted to it).
Use with care! Same as self.to_subset but without any property checks. Always succeeds.
The inclusion map: converts self to the equivalent element of its superset.