Compartilhar via


CGAffineTransform(nfloat, nfloat, nfloat, nfloat, nfloat, nfloat) Construtor

Definição

Inicializa uma transformação afim dos valores de matriz.

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

Parâmetros

xx
nfloat

O componente xx.

yx
nfloat

O componente yx.

xy
nfloat

O componente xy.

yy
nfloat

O componente yy.

x0
nfloat

O componente de tradução X.

y0
nfloat

O componente de tradução y.

Comentários

Define uma matriz de transformação afim com os seguintes componentes:

| xx yx 0 |

| xy yy 0 |

| tx ty 1 |

A terceira coluna sempre tem os valores 0, 0, 1, portanto, apenas seis valores precisam ser fornecidos.

Aplica-se a