pub struct Matrix3x4f {
pub e00: f32,
pub e01: f32,
pub e02: f32,
pub e03: f32,
pub e10: f32,
pub e11: f32,
pub e12: f32,
pub e13: f32,
pub e20: f32,
pub e21: f32,
pub e22: f32,
pub e23: f32,
}Expand description
Matrix3x4f is a sub class of the Unity engine since version 3.5.0.
Fields§
§e00: f32§e01: f32§e02: f32§e03: f32§e10: f32§e11: f32§e12: f32§e13: f32§e20: f32§e21: f32§e22: f32§e23: f32Trait Implementations§
Source§impl Debug for Matrix3x4f
impl Debug for Matrix3x4f
Source§impl<'de> Deserialize<'de> for Matrix3x4f
impl<'de> Deserialize<'de> for Matrix3x4f
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Matrix3x4f
impl RefUnwindSafe for Matrix3x4f
impl Send for Matrix3x4f
impl Sync for Matrix3x4f
impl Unpin for Matrix3x4f
impl UnwindSafe for Matrix3x4f
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