CGAffineTransform.Multiply Method

Definition

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

b
CGAffineTransform

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

a
CGAffineTransform

The first affine.

b
CGAffineTransform

The second affine.

Returns

The multiplied affine.

Remarks

Use affine multiplication to compose multiple affine tranformations into a single affine.

Applies to