Matrix3x2.Multiply Metod

Definition

Utför en multiplikationsåtgärd i en matris.

Överlagringar

Name Description
Multiply(Matrix3x2, Matrix3x2)

Returnerar matrisen som resulterar i att två matriser multipliceras.

Multiply(Matrix3x2, Single)

Returnerar matrisen som är resultatet av skalning av alla element i en angiven matris med en skalär faktor.

Multiply(Matrix3x2, Matrix3x2)

Källa:
Matrix3x2.cs
Källa:
Matrix3x2.cs
Källa:
Matrix3x2.cs
Källa:
Matrix3x2.cs
Källa:
Matrix3x2.cs

Returnerar matrisen som resulterar i att två matriser multipliceras.

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

Parametrar

value1
Matrix3x2

Den första matrisen.

value2
Matrix3x2

Den andra matrisen.

Returer

Produktmatrisen.

Gäller för

Multiply(Matrix3x2, Single)

Källa:
Matrix3x2.cs
Källa:
Matrix3x2.cs
Källa:
Matrix3x2.cs
Källa:
Matrix3x2.cs
Källa:
Matrix3x2.cs

Returnerar matrisen som är resultatet av skalning av alla element i en angiven matris med en skalär faktor.

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

Parametrar

value1
Matrix3x2

Matrisen som ska skalas.

value2
Single

Det skalningsvärde som ska användas.

Returer

Den skalade matrisen.

Gäller för