Share via


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 |

3 番目の列の値は常に 0、0、1 であるため、6 つの値のみを指定する必要があります。

適用対象