Matrix3x2.Multiply Methode

Definitie

Voert een vermenigvuldigingsbewerking uit op een matrix.

Overloads

Name Description
Multiply(Matrix3x2, Matrix3x2)

Retourneert de matrix die het resultaat is van het vermenigvuldigen van twee matrices samen.

Multiply(Matrix3x2, Single)

Retourneert de matrix die het resultaat is van het schalen van alle elementen van een opgegeven matrix met een scalaire factor.

Multiply(Matrix3x2, Matrix3x2)

Bron:
Matrix3x2.cs
Bron:
Matrix3x2.cs
Bron:
Matrix3x2.cs
Bron:
Matrix3x2.cs
Bron:
Matrix3x2.cs

Retourneert de matrix die het resultaat is van het vermenigvuldigen van twee matrices samen.

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

Parameters

value1
Matrix3x2

De eerste matrix.

value2
Matrix3x2

De tweede matrix.

Retouren

De productmatrix.

Van toepassing op

Multiply(Matrix3x2, Single)

Bron:
Matrix3x2.cs
Bron:
Matrix3x2.cs
Bron:
Matrix3x2.cs
Bron:
Matrix3x2.cs
Bron:
Matrix3x2.cs

Retourneert de matrix die het resultaat is van het schalen van alle elementen van een opgegeven matrix met een scalaire factor.

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

Parameters

value1
Matrix3x2

De matrix die moet worden geschaald.

value2
Single

De te gebruiken schaalwaarde.

Retouren

De geschaalde matrix.

Van toepassing op