Matrix4.op_Multiply

operator *

Multiply the two matrices

public static Matrix4 operator *(Matrix4 lhs, Matrix4 rhs)
ParameterTypeDescription
lhsMatrix4Lhs.
rhsMatrix4Rhs.

Return Value

Result matrix

See Also


operator *

Multiply the matrix and vector3

public static Vector3 operator *(Matrix4 lhs, Vector3 v)
ParameterTypeDescription
lhsMatrix4Lhs.
vVector3V.

Return Value

Result matrix

See Also


operator *

Multiply the matrix and vector4

public static Vector4 operator *(Matrix4 lhs, Vector4 v)
ParameterTypeDescription
lhsMatrix4Lhs.
vVector4V.

Return Value

Result matrix

See Also


operator *

Multiply the matrix and double value

public static Matrix4 operator *(Matrix4 lhs, double v)
ParameterTypeDescription
lhsMatrix4Lhs.
vDoubleV.

Return Value

Result matrix

See Also