[−]Struct cairo::Matrix
Fields
xx: f64yx: f64xy: f64yy: f64x0: f64y0: f64Trait Implementations
impl Clone for Matrix
fn clone(&self) -> Matrix
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Copy for Matrix
impl Default for Matrix
impl Display for Matrix
impl PartialEq<Matrix> for Matrix
impl Debug for Matrix
impl MatrixTrait for Matrix[src]
fn null() -> Matrix[src]
fn new(xx: f64, yx: f64, xy: f64, yy: f64, x0: f64, y0: f64) -> Matrix[src]
fn multiply(left: &Matrix, right: &Matrix) -> Matrix[src]
fn identity() -> Matrix[src]
fn init(&mut self, xx: f64, yx: f64, xy: f64, yy: f64, x0: f64, y0: f64)[src]
fn translate(&mut self, tx: f64, ty: f64)[src]
fn scale(&mut self, sx: f64, sy: f64)[src]
fn rotate(&mut self, angle: f64)[src]
fn invert(&mut self)[src]
fn try_invert(&self) -> Result<Matrix, Status>[src]
fn transform_distance(&self, _dx: f64, _dy: f64) -> (f64, f64)[src]
fn transform_point(&self, _x: f64, _y: f64) -> (f64, f64)[src]
Auto Trait Implementations
Blanket Implementations
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T> From for T[src]
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = !
🔬 This is a nightly-only experimental API. (
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,