Namespace:
BitMiracle.Docotic.Pdf
Assembly:
BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)
Syntax
C#
public static PdfMatrix operator *(
PdfMatrix left,
PdfMatrix right
)
VB
Public Shared Operator * (
left As PdfMatrix,
right As PdfMatrix
) As PdfMatrix
Parameters
- left
- Type: BitMiracle.Docotic.Pdf.PdfMatrix
The left matrix to multiply. - right
- Type: BitMiracle.Docotic.Pdf.PdfMatrix
The right matrix to multiply.
Return Value
Type:
PdfMatrixThe result of multiplying
left by
right.
Remarks
Matrix multiplication is not commutative. Multiplying left by
right is not the same as multiplying right by
left.
See Also