TransformationMatrixMultiply(TransformationMatrix, TransformationMatrix) Operator

Multiplies two matrices together and returns the resulting matrix.

Definition

Namespace: KGySoft.Drawing.Shapes
Assembly: KGySoft.Drawing.Core (in KGySoft.Drawing.Core.dll) Version: 10.0.0-rc.1
C#
public static TransformationMatrix operator *(
	TransformationMatrix a,
	TransformationMatrix b
)

Parameters

a  TransformationMatrix
The first source matrix.
b  TransformationMatrix
The second source matrix.

Return Value

TransformationMatrix
The product matrix.

See Also