Instance Method インスタンスメソッド

append(_:)

Appends the specified matrix to the receiver’s matrix. 指定された行列をレシーバの持つ行列に加えます。

Declaration 宣言

macOS

func append(_ transform: AffineTransform)

Mac Catalyst

func append(_ transform: NSAffineTransform)

Parameters パラメータ

aTransform

The matrix to append to the receiver. レシーバに加えられる行列。

Discussion 議論

This method multiplies the receiver's matrix by the matrix in aTransform and replaces the receiver's matrix with the results. This type of operation is the same as applying the transformations in the receiver followed by the transformations in aTransform. このメソッドは、レシーバの持つ行列をaTransformの行列と掛け算して、レシーバの行列をその結果で置き換えます。この種の演算は、レシーバの変換に続けてaTransformの変換を適用することと同じです。

See Also 参照

Accumulating Transformations 変換の累算