Appends the specified matrix to the receiver’s matrix.
SDKs
- macOS 10.0+
- Mac Catalyst 13.0+
Framework
- Foundation
Declaration
func append(_ transform: Affine Transform)
func append(_ transform: NSAffine Transform)
Parameters
aTransform
The matrix to append to the receiver.
Discussion
This method multiplies the receiver's matrix by the matrix in a
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 a
.