#[repr(C, align(32))]pub struct DMat3x2 {
pub inner: [DVec3; 2],
/* private fields */
}
Expand description
Matrix of f64
values with 3 rows and 2 columns. Has size 64 and alignment 32.
Fields§
§inner: [DVec3; 2]
Implementations§
Trait Implementations§
Source§impl From<ColumnMatrix3x2<f64>> for DMat3x2
impl From<ColumnMatrix3x2<f64>> for DMat3x2
Source§fn from(other: ColumnMatrix3x2<f64>) -> Self
fn from(other: ColumnMatrix3x2<f64>) -> Self
Converts to this type from the input type.
Source§impl PartialOrd for DMat3x2
impl PartialOrd for DMat3x2
impl Copy for DMat3x2
impl Pod for DMat3x2
impl StructuralPartialEq for DMat3x2
Auto Trait Implementations§
impl Freeze for DMat3x2
impl RefUnwindSafe for DMat3x2
impl Send for DMat3x2
impl Sync for DMat3x2
impl Unpin for DMat3x2
impl UnwindSafe for DMat3x2
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
Source§type Bits = T
type Bits = T
Self
must have the same layout as the specified Bits
except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern
.Source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self
.