operator + method

Matrix3 operator + (Matrix3 arg)

Returns new matrix after component wise this + arg

Implementation

Matrix3 operator +(Matrix3 arg) => clone()..add(arg);