Matrix3x2.Multiply Method

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.

C#
public static System.Numerics.Matrix3x2 Multiply(System.Numerics.Matrix3x2 value1, System.Numerics.Matrix3x2 value2);

Parameters

value1
Matrix3x2

The first matrix.

value2
Matrix3x2

The second matrix.

Returns

The product matrix.

Applies to

.NET 10 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided), 2.1
UWP 10.0

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.

C#
public static System.Numerics.Matrix3x2 Multiply(System.Numerics.Matrix3x2 value1, float value2);

Parameters

value1
Matrix3x2

The matrix to scale.

value2
Single

The scaling value to use.

Returns

The scaled matrix.

Applies to

.NET 10 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided), 2.1
UWP 10.0