Struct nalgebra::core::coordinates::M6x3
[−]
[src]
#[repr(C)]pub struct M6x3<N: Scalar> { 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, }
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
m61: N
m12: N
m22: N
m32: N
m42: N
m52: N
m62: N
m13: N
m23: N
m33: N
m43: N
m53: N
m63: N
Trait Implementations
impl<N: Eq + Scalar> Eq for M6x3<N>
[src]
impl<N: PartialEq + Scalar> PartialEq for M6x3<N>
[src]
fn eq(&self, __arg_0: &M6x3<N>) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &M6x3<N>) -> bool
This method tests for !=
.
impl<N: Clone + Scalar> Clone for M6x3<N>
[src]
fn clone(&self) -> M6x3<N>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl<N: Hash + Scalar> Hash for M6x3<N>
[src]
fn hash<__HN: Hasher>(&self, __arg_0: &mut __HN)
Feeds this value into the state given, updating the hasher as necessary.
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0
H: Hasher,
Feeds a slice of this type into the state provided.