#[repr(transparent)]pub struct Matrix(_);
Implementations
sourceimpl Matrix
impl Matrix
pub fn identity() -> Self
pub fn new(xx: f64, yx: f64, xy: f64, yy: f64, x0: f64, y0: f64) -> Self
pub fn xx(&self) -> f64
pub fn set_xx(&mut self, xx: f64)
pub fn yx(&self) -> f64
pub fn set_yx(&mut self, yx: f64)
pub fn xy(&self) -> f64
pub fn set_xy(&mut self, xy: f64)
pub fn yy(&self) -> f64
pub fn set_yy(&mut self, yy: f64)
pub fn x0(&self) -> f64
pub fn set_x0(&mut self, x0: f64)
pub fn y0(&self) -> f64
pub fn set_y0(&mut self, y0: f64)
pub fn multiply(left: &Matrix, right: &Matrix) -> Matrix
pub fn translate(&mut self, tx: f64, ty: f64)
pub fn scale(&mut self, sx: f64, sy: f64)
pub fn rotate(&mut self, angle: f64)
pub fn invert(&mut self)
pub fn try_invert(&self) -> Result<Matrix, Error>
pub fn transform_distance(&self, _dx: f64, _dy: f64) -> (f64, f64)
pub fn transform_point(&self, _x: f64, _y: f64) -> (f64, f64)
Trait Implementations
sourceimpl<'a> FromValue<'a> for &'a Matrix
impl<'a> FromValue<'a> for &'a Matrix
type Checker = GenericValueTypeOrNoneChecker<&'a Matrix>
type Checker = GenericValueTypeOrNoneChecker<&'a Matrix>
Value type checker.
sourceunsafe fn from_value(value: &'a Value) -> Self
unsafe fn from_value(value: &'a Value) -> Self
Get the contained value from a Value
. Read more
sourceimpl<'a> FromValue<'a> for Matrix
impl<'a> FromValue<'a> for Matrix
type Checker = GenericValueTypeOrNoneChecker<Matrix>
type Checker = GenericValueTypeOrNoneChecker<Matrix>
Value type checker.
sourceunsafe fn from_value(value: &'a Value) -> Self
unsafe fn from_value(value: &'a Value) -> Self
Get the contained value from a Value
. Read more
sourceimpl PartialEq<Matrix> for Matrix
impl PartialEq<Matrix> for Matrix
sourceimpl StaticType for Matrix
impl StaticType for Matrix
sourcefn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of Self
.
sourceimpl ToValueOptional for Matrix
impl ToValueOptional for Matrix
sourcefn to_value_optional(s: Option<&Self>) -> Value
fn to_value_optional(s: Option<&Self>) -> Value
Convert an Option
to a Value
.
impl Copy for Matrix
impl StructuralPartialEq for Matrix
impl ValueTypeOptional for Matrix
Auto Trait Implementations
impl RefUnwindSafe for Matrix
impl Send for Matrix
impl Sync for Matrix
impl Unpin for Matrix
impl UnwindSafe for Matrix
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> StaticTypeExt for T where
T: StaticType,
impl<T> StaticTypeExt for T where
T: StaticType,
sourcefn ensure_type()
fn ensure_type()
Ensures that the type has been registered with the type system.
sourceimpl<T> ToClosureReturnValue for T where
T: ToValue,
impl<T> ToClosureReturnValue for T where
T: ToValue,
fn to_closure_return_value(&self) -> Option<Value>
sourceimpl<T> ToSendValue for T where
T: Send + ToValue + ?Sized,
impl<T> ToSendValue for T where
T: Send + ToValue + ?Sized,
sourcefn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
Returns a SendValue
clone of self
.