CGAffineTransform(nfloat, nfloat, nfloat, nfloat, nfloat, nfloat) Constructor

Definition

Initializes an affine transformation from the matrix values.

public CGAffineTransform (nfloat xx, nfloat yx, nfloat xy, nfloat yy, nfloat x0, nfloat y0);
new CoreGraphics.CGAffineTransform : nfloat * nfloat * nfloat * nfloat * nfloat * nfloat -> CoreGraphics.CGAffineTransform

Parameters

xx
nfloat

The xx component.

yx
nfloat

The yx component.

xy
nfloat

The xy component.

yy
nfloat

The yy component.

x0
nfloat

The X translation component.

y0
nfloat

The y translation component.

Remarks

Defines an affine transformation matrix with the following components:

| xx yx 0 |

| xy yy 0 |

| tx ty 1 |

The third column always has the values 0, 0, 1 so only six values need to be provided.

Applies to