CGAffineTransform.Multiply Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Multiply(CGAffineTransform) |
Multiplies the current affine transformation by the specified affine transformation. |
Multiply(CGAffineTransform, CGAffineTransform) |
Multiplies the two affine transformations and returns the result. |
Multiply(CGAffineTransform)
Multiplies the current affine transformation by the specified affine transformation.
public void Multiply (CoreGraphics.CGAffineTransform b);
member this.Multiply : CoreGraphics.CGAffineTransform -> unit
Parameters
The affine used to multiply the current affine by.
Remarks
Use affine multiplication to compose multiple affine tranformations into a single affine.
Applies to
Multiply(CGAffineTransform, CGAffineTransform)
Multiplies the two affine transformations and returns the result.
public static CoreGraphics.CGAffineTransform Multiply (CoreGraphics.CGAffineTransform a, CoreGraphics.CGAffineTransform b);
static member Multiply : CoreGraphics.CGAffineTransform * CoreGraphics.CGAffineTransform -> CoreGraphics.CGAffineTransform
Parameters
The first affine.
The second affine.
Returns
The multiplied affine.
Remarks
Use affine multiplication to compose multiple affine tranformations into a single affine.