pub struct Matrix {
pub m11: f32,
pub m12: f32,
pub m21: f32,
pub m22: f32,
pub dx: f32,
pub dy: f32,
}Fields§
§m11: f32§m12: f32§m21: f32§m22: f32§dx: f32§dy: f32Trait Implementations§
Source§impl From<DWRITE_MATRIX> for Matrix
impl From<DWRITE_MATRIX> for Matrix
Source§fn from(src: DWRITE_MATRIX) -> Matrix
fn from(src: DWRITE_MATRIX) -> Matrix
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Matrix
impl RefUnwindSafe for Matrix
impl Send for Matrix
impl Sync for Matrix
impl Unpin for Matrix
impl UnsafeUnpin for Matrix
impl UnwindSafe for Matrix
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