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

prepend(_:)

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

Declaration 宣言

macOS

func prepend(_ transform: AffineTransform)

Mac Catalyst

func prepend(_ transform: NSAffineTransform)

Parameters パラメータ

aTransform

The matrix to prepend to the receiver. この行列をレシーバの先頭に加えます。

Discussion 議論

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

See Also 参照

Accumulating Transformations 変換の累算