Matrix3DHelper.Multiply(Matrix3D, Matrix3D) 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.
Multiplies the specified matrices. C# and Microsoft Visual Basic code should use the multiplication operator instead.
public:
static Matrix3D Multiply(Matrix3D matrix1, Matrix3D matrix2);
static Matrix3D Multiply(Matrix3D const& matrix1, Matrix3D const& matrix2);
public static Matrix3D Multiply(Matrix3D matrix1, Matrix3D matrix2);
function multiply(matrix1, matrix2)
Public Shared Function Multiply (matrix1 As Matrix3D, matrix2 As Matrix3D) As Matrix3D
Parameters
- matrix1
- Matrix3D
The first matrix to multiply.
- matrix2
- Matrix3D
The second matrix to multiply.
Returns
A new Matrix3D that is the result of multiplication.