Matrix3x2.Multiply Operator

Definition

Performs a multiplication operation on a matrix.

Overloads

Multiply(Matrix3x2, Matrix3x2)

Returns the matrix that results from multiplying two matrices together.

Multiply(Matrix3x2, Single)

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

Multiply(Matrix3x2, Matrix3x2)

Source:
Matrix3x2.cs
Source:
Matrix3x2.cs
Source:
Matrix3x2.cs

Returns the matrix that results from multiplying two matrices together.

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

Parameters

value1
Matrix3x2

The first matrix.

value2
Matrix3x2

The second matrix.

Returns

The product matrix.

Remarks

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

Applies to

Multiply(Matrix3x2, Single)

Source:
Matrix3x2.cs
Source:
Matrix3x2.cs
Source:
Matrix3x2.cs

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

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

Parameters

value1
Matrix3x2

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 Matrix3x2 objects.

Applies to