[]
        
(Showing Draft Content)

GrapeCity.Documents.Common.Matrix.op_Multiply

operator * Operator

operator *(Matrix, Matrix)

Determines the product of two matrices.

Declaration
public static Matrix operator *(Matrix leftMatrix, Matrix rightMatrix)
Public Shared Operator *(leftMatrix As Matrix, rightMatrix As Matrix) As Matrix
Parameters
Type Name Description
Matrix leftMatrix

The first matrix to multiply.

Matrix rightMatrix

The second matrix to multiply.

Returns
Type Description
Matrix

The product of the two matrices.

operator *(Matrix, Matrix3x2)

Determines the product of the Matrix to Matrix3x2.

Declaration
public static Matrix3x2 operator *(Matrix leftMatrix, Matrix3x2 rightMatrix)
Public Shared Operator *(leftMatrix As Matrix, rightMatrix As Matrix3x2) As Matrix3x2
Parameters
Type Name Description
Matrix leftMatrix

The first matrix to multiply.

Matrix3x2 rightMatrix

The second matrix to multiply.

Returns
Type Description
Matrix3x2

The product of the two matrices in a shape of Matrix3x2.