CGAffineTransform(nfloat, nfloat, nfloat, nfloat, nfloat, nfloat) 构造函数

定义

从矩阵值初始化仿射转换。

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

参数

xx
nfloat

xx 组件。

yx
nfloat

yx 组件。

xy
nfloat

xy 组件。

yy
nfloat

yy 组件。

x0
nfloat

X 转换组件。

y0
nfloat

y 转换组件。

注解

使用以下组件定义仿射转换矩阵:

|xx yx 0 |

|xy yy 0 |

|tx ty 1 |

第三列始终具有值 0、0、1,因此只需提供六个值。

适用于