operator + method Null safety
- Matrix3 arg
Returns new matrix after component wise this + arg
Implementation
Matrix3 operator +(Matrix3 arg) => clone()..add(arg);
Returns new matrix after component wise this + arg
Matrix3 operator +(Matrix3 arg) => clone()..add(arg);