MatrixAddition Operator (Matrix, Matrix6By6) |
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 operator +(
Matrix leftAddend,
Matrix6By6 rightAddend
)
Public Shared Operator + (
leftAddend As Matrix,
rightAddend As Matrix6By6
) As Matrix
public:
static Matrix^ operator +(
Matrix^ leftAddend,
Matrix6By6^ rightAddend
)
static let inline (+)
leftAddend : Matrix *
rightAddend : Matrix6By6 : Matrix
Parameters
- leftAddend
- Type: AGI.Foundation.CoordinatesMatrix
The first Matrix to sum. - rightAddend
- Type: AGI.Foundation.CoordinatesMatrix6By6
The second Matrix6By6 to sum.
Return Value
Type:
MatrixA
Matrix which is the sum of the two given matrices and the given matrix
See Also