Compartir a través de


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

Definición

Inicializa una transformación afín a partir de los 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

Componente xx.

yx
nfloat

Componente yx.

xy
nfloat

Componente xy.

yy
nfloat

Componente yy.

x0
nfloat

Componente de traducción X.

y0
nfloat

Componente de traducción y.

Comentarios

Define una matriz de transformación afín con los siguientes componentes:

| xx yx 0 |

| xy aaaa 0 |

| tx ty 1 |

La tercera columna siempre tiene los valores 0, 0, 1, por lo que solo se deben proporcionar seis valores.

Se aplica a