Click or drag to resize
Pdftools logo

AffineTransformConcatenate Method

Concatenate transform with other transform.

Concatenating a transform with an other transform is equivalent to left-multiplying the transform's matrix with with the other transform's matrix.

Namespace: PdfTools.Toolbox.Geometry.Real
Assembly: PdfTools.Toolbox (in PdfTools.Toolbox.dll) Version: 1.1.0+5820e9ca9ca173983539ffc40abc227fb62e6928
Syntax
C#
public void Concatenate(
	AffineTransform other
)

Parameters

other  AffineTransform
the transform to be concatenated to this transform
Exceptions
ExceptionCondition
InvalidOperationExceptionIf the affine transform is singular, e.g. default initialized. (Use Identity as an initial value.)
ArgumentExceptionIf the other affine transform is singular, e.g. default initialized. (Use Identity as an initial value.)
See Also