Struct nalgebra::base::coordinates::M5x3 [−][src]
#[repr(C)]pub struct M5x3<N: Scalar> {}Show 15 fields
pub m11: N, pub m21: N, pub m31: N, pub m41: N, pub m51: N, pub m12: N, pub m22: N, pub m32: N, pub m42: N, pub m52: N, pub m13: N, pub m23: N, pub m33: N, pub m43: N, pub m53: 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: N
m21: N
m31: N
m41: N
m51: N
m12: N
m22: N
m32: N
m42: N
m52: N
m13: N
m23: N
m33: N
m43: N
m53: N
Trait Implementations
Auto Trait Implementations
impl<N> RefUnwindSafe for M5x3<N> where
N: RefUnwindSafe,
impl<N> UnwindSafe for M5x3<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.