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