MatrixAdd Method (Matrix6By6, Matrix) |
Creates a
Matrix which is the sum of the two given matrices.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public static Matrix Add(
Matrix6By6 leftAddend,
Matrix rightAddend
)
Public Shared Function Add (
leftAddend As Matrix6By6,
rightAddend As Matrix
) As Matrix
public:
static Matrix^ Add(
Matrix6By6^ leftAddend,
Matrix^ rightAddend
)
static member Add :
leftAddend : Matrix6By6 *
rightAddend : Matrix -> Matrix
Parameters
- leftAddend
- Type: AGI.Foundation.CoordinatesMatrix6By6
The first Matrix6By6 to sum. - rightAddend
- Type: AGI.Foundation.CoordinatesMatrix
The second Matrix to sum.
Return Value
Type:
MatrixA
Matrix which is the sum of the two given matrices and the given matrix
See Also