Matrix4x4.Multiply Methode

Definitie

Voert een vermenigvuldigingsbewerking uit op een matrix.

Overloads

Name Description
Multiply(Matrix4x4, Matrix4x4)

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

Multiply(Matrix4x4, Single)

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

Multiply(Matrix4x4, Matrix4x4)

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

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

Parameters

value1
Matrix4x4

De eerste matrix.

value2
Matrix4x4

De tweede matrix.

Retouren

De productmatrix.

Van toepassing op

Multiply(Matrix4x4, Single)

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::Matrix4x4 Multiply(System::Numerics::Matrix4x4 value1, float value2);
public static System.Numerics.Matrix4x4 Multiply(System.Numerics.Matrix4x4 value1, float value2);
static member Multiply : System.Numerics.Matrix4x4 * single -> System.Numerics.Matrix4x4
Public Shared Function Multiply (value1 As Matrix4x4, value2 As Single) As Matrix4x4

Parameters

value1
Matrix4x4

De matrix die moet worden geschaald.

value2
Single

De te gebruiken schaalwaarde.

Retouren

De geschaalde matrix.

Van toepassing op