Matrix4x4.Multiply Metod
Definition
Viktigt
En del information gäller för förhandsversionen av en produkt och kan komma att ändras avsevärt innan produkten blir allmänt tillgänglig. Microsoft lämnar inga garantier, uttryckliga eller underförstådda, avseende informationen som visas här.
Utför en multiplikationsåtgärd i en matris.
Överlagringar
| Name | Description |
|---|---|
| Multiply(Matrix4x4, Matrix4x4) |
Returnerar matrisen som resulterar i att två matriser multipliceras. |
| Multiply(Matrix4x4, Single) |
Returnerar matrisen som är resultatet av skalning av alla element i en angiven matris med en skalär faktor. |
Multiply(Matrix4x4, Matrix4x4)
- Källa:
- Matrix4x4.cs
- Källa:
- Matrix4x4.cs
- Källa:
- Matrix4x4.cs
- Källa:
- Matrix4x4.cs
- Källa:
- Matrix4x4.cs
Returnerar matrisen som resulterar i att två matriser multipliceras.
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
Parametrar
- value1
- Matrix4x4
Den första matrisen.
- value2
- Matrix4x4
Den andra matrisen.
Returer
Produktmatrisen.
Gäller för
Multiply(Matrix4x4, Single)
- Källa:
- Matrix4x4.cs
- Källa:
- Matrix4x4.cs
- Källa:
- Matrix4x4.cs
- Källa:
- Matrix4x4.cs
- Källa:
- Matrix4x4.cs
Returnerar matrisen som är resultatet av skalning av alla element i en angiven matris med en skalär faktor.
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
Parametrar
- value1
- Matrix4x4
Matrisen som ska skalas.
- value2
- Single
Det skalningsvärde som ska användas.
Returer
Den skalade matrisen.