Struct pdfium_render::bindgen::_FS_MATRIX_
source · [−]#[repr(C)]pub struct _FS_MATRIX_ {
pub a: f32,
pub b: f32,
pub c: f32,
pub d: f32,
pub e: f32,
pub f: f32,
}Expand description
Matrix for transformation, in the form [a b c d e f], equivalent to: | a b 0 | | c d 0 | | e f 1 |
Translation is performed with [1 0 0 1 tx ty]. Scaling is performed with [sx 0 0 sy 0 0]. See PDF Reference 1.7, 4.2.2 Common Transformations for more.
Fields
a: f32b: f32c: f32d: f32e: f32f: f32Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for _FS_MATRIX_
impl Send for _FS_MATRIX_
impl Sync for _FS_MATRIX_
impl Unpin for _FS_MATRIX_
impl UnwindSafe for _FS_MATRIX_
Blanket Implementations
Mutably borrows from an owned value. Read more