ArcObjects Library Reference (Geometry)  

IAffineTransformation2D.PreMultiply Method

Pre-multiplies the transformation by another transformation.

[Visual Basic .NET]
Public Sub PreMultiply ( _
    ByVal preTransform As IAffineTransformation2D _
)
[C#]
public void PreMultiply (
    IAffineTransformation2D preTransform
);
[C++]
HRESULT PreMultiply(
  IAffineTransformation2D* preTransform
);
[C++]

Parameters

preTransform

  preTransform is a parameter of type IAffineTransformation2D

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description

Multiplies the existing affine transformation matrix with another affine transformation matrix.  The multiplication occurs after the other transformation is first applied.  This is a left side matrix multiplication.

See Also

IAffineTransformation2D Interface