Matrix4x4.Multiply Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Performs a multiplication operation on a matrix.
Overloads
Multiply(Matrix4x4, Matrix4x4) |
Returns the matrix that results from multiplying two matrices together. |
Multiply(Matrix4x4, Single) |
Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor. |
Multiply(Matrix4x4, Matrix4x4)
- Source:
- Matrix4x4.cs
- Source:
- Matrix4x4.cs
- Source:
- Matrix4x4.cs
Returns the matrix that results from multiplying two matrices together.
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
The first matrix.
- value2
- Matrix4x4
The second matrix.
Returns
The product matrix.
Applies to
Multiply(Matrix4x4, Single)
- Source:
- Matrix4x4.cs
- Source:
- Matrix4x4.cs
- Source:
- Matrix4x4.cs
Returns the matrix that results from scaling all the elements of a specified matrix by a scalar 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
The matrix to scale.
- value2
- Single
The scaling value to use.
Returns
The scaled matrix.