| MatrixMultiply Method (Matrix3By3, Matrix) | 
 
            Creates a 
Matrix which is the linear algebra multiplication of
            the two given matrices.
            
 
    Namespace: 
   AGI.Foundation.Coordinates
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
 Syntax
Syntaxpublic static Matrix Multiply(
	Matrix3By3 multiplicand,
	Matrix multiplier
)
Public Shared Function Multiply ( 
	multiplicand As Matrix3By3,
	multiplier As Matrix
) As Matrix
public:
static Matrix^ Multiply(
	Matrix3By3 multiplicand, 
	Matrix^ multiplier
)
static member Multiply : 
        multiplicand : Matrix3By3 * 
        multiplier : Matrix -> Matrix 
Parameters
- multiplicand
- Type: AGI.Foundation.CoordinatesMatrix3By3
 The first Matrix3By3 to multiply.
- multiplier
- Type: AGI.Foundation.CoordinatesMatrix
 The second Matrix to multiply.
Return Value
Type: 
MatrixA 
Matrix which is the multiplication of this matrix and the given matrix.
 See Also
See Also