#[repr(C)]pub struct MPSScaleTransform {
pub scaleX: c_double,
pub scaleY: c_double,
pub translateX: c_double,
pub translateY: c_double,
}Available on crate feature
MPSCoreTypes only.Expand description
Transform matrix for explict control over resampling in MPSImageScale.
The MPSScaleTransform is equivalent to:
(CGAffineTransform) {
.a = scaleX, .b = 0,
.c = 0, .d = scaleY,
.tx = translateX, .ty = translateY
}See also Apple’s documentation
Fields§
§scaleX: c_doublehorizontal scaling factor
scaleY: c_doublevertical scaling factor
translateX: c_doublehorizontal translation
translateY: c_doublevertical translation
Trait Implementations§
Source§impl Clone for MPSScaleTransform
Available on crate feature MPSCore only.
impl Clone for MPSScaleTransform
Available on crate feature
MPSCore only.Source§fn clone(&self) -> MPSScaleTransform
fn clone(&self) -> MPSScaleTransform
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MPSScaleTransform
Available on crate feature MPSCore only.
impl Debug for MPSScaleTransform
Available on crate feature
MPSCore only.Source§impl Encode for MPSScaleTransform
Available on crate feature MPSCore only.
impl Encode for MPSScaleTransform
Available on crate feature
MPSCore only.Source§impl PartialEq for MPSScaleTransform
Available on crate feature MPSCore only.
impl PartialEq for MPSScaleTransform
Available on crate feature
MPSCore only.Source§impl RefEncode for MPSScaleTransform
Available on crate feature MPSCore only.
impl RefEncode for MPSScaleTransform
Available on crate feature
MPSCore only.Source§const ENCODING_REF: Encoding
const ENCODING_REF: Encoding
The Objective-C type-encoding for a reference of this type. Read more
impl Copy for MPSScaleTransform
Available on crate feature
MPSCore only.impl StructuralPartialEq for MPSScaleTransform
Available on crate feature
MPSCore only.Auto Trait Implementations§
impl Freeze for MPSScaleTransform
impl RefUnwindSafe for MPSScaleTransform
impl Send for MPSScaleTransform
impl Sync for MPSScaleTransform
impl Unpin for MPSScaleTransform
impl UnwindSafe for MPSScaleTransform
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> EncodeArgument for Twhere
T: Encode,
impl<T> EncodeArgument for Twhere
T: Encode,
Source§const ENCODING_ARGUMENT: Encoding = T::ENCODING
const ENCODING_ARGUMENT: Encoding = T::ENCODING
The Objective-C type-encoding for this type.
Source§impl<T> EncodeReturn for Twhere
T: Encode,
impl<T> EncodeReturn for Twhere
T: Encode,
Source§const ENCODING_RETURN: Encoding = T::ENCODING
const ENCODING_RETURN: Encoding = T::ENCODING
The Objective-C type-encoding for this type.