FS_MATRIX

Type Alias FS_MATRIX 

Source
pub type FS_MATRIX = _FS_MATRIX_;
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.

Aliased Type§

#[repr(C)]
pub struct FS_MATRIX { pub a: f32, pub b: f32, pub c: f32, pub d: f32, pub e: f32, pub f: f32, }

Fields§

§a: f32§b: f32§c: f32§d: f32§e: f32§f: f32