Matrix4x4.Multiply Operator

Definition

Performs a multiplication operation on a matrix.

Overloads

Multiply(Matrix4x4, Matrix4x4)

Returns the matrix that results from multiplying two matrices together.

Multiply(Matrix4x4, Single)

Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.

Multiply(Matrix4x4, Matrix4x4)

Returns the matrix that results from multiplying two matrices together.

public:
 static System::Numerics::Matrix4x4 operator *(System::Numerics::Matrix4x4 value1, System::Numerics::Matrix4x4 value2);
public static System.Numerics.Matrix4x4 operator * (System.Numerics.Matrix4x4 value1, System.Numerics.Matrix4x4 value2);
static member ( * ) : System.Numerics.Matrix4x4 * System.Numerics.Matrix4x4 -> System.Numerics.Matrix4x4
Public Shared Operator * (value1 As Matrix4x4, value2 As Matrix4x4) As Matrix4x4

Parameters

value1
Matrix4x4

The first matrix.

value2
Matrix4x4

The second matrix.

Returns

The product matrix.

Remarks

The Multiply method defines the operation of the multiplication operator for Matrix4x4 objects.

Applies to

Multiply(Matrix4x4, Single)

Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.

public:
 static System::Numerics::Matrix4x4 operator *(System::Numerics::Matrix4x4 value1, float value2);
public static System.Numerics.Matrix4x4 operator * (System.Numerics.Matrix4x4 value1, float value2);
static member ( * ) : System.Numerics.Matrix4x4 * single -> System.Numerics.Matrix4x4
Public Shared Operator * (value1 As Matrix4x4, value2 As Single) As Matrix4x4

Parameters

value1
Matrix4x4

The matrix to scale.

value2
Single

The scaling value to use.

Returns

The scaled matrix.

Remarks

The Multiply method defines the operation of the multiplication operator for Matrix4x4 objects.

Applies to