Struct nalgebra::core::coordinates::M2x6
[−]
[src]
#[repr(C)]pub struct M2x6<N: Scalar> { pub m11: N, pub m21: N, pub m12: N, pub m22: N, pub m13: N, pub m23: N, pub m14: N, pub m24: N, pub m15: N, pub m25: N, pub m16: N, pub m26: N, }
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
m12: N
m22: N
m13: N
m23: N
m14: N
m24: N
m15: N
m25: N
m16: N
m26: N
Trait Implementations
impl<N: Eq + Scalar> Eq for M2x6<N>
[src]
impl<N: PartialEq + Scalar> PartialEq for M2x6<N>
[src]
fn eq(&self, __arg_0: &M2x6<N>) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &M2x6<N>) -> bool
[src]
This method tests for !=
.
impl<N: Clone + Scalar> Clone for M2x6<N>
[src]
fn clone(&self) -> M2x6<N>
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<N: Hash + Scalar> Hash for M2x6<N>
[src]
fn hash<__HN: Hasher>(&self, __arg_0: &mut __HN)
[src]
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl<N: Debug + Scalar> Debug for M2x6<N>
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more