operator - method

Matrix3 operator -(
  1. Matrix3 arg
)

Returns new matrix after component wise this - arg

Implementation

Matrix3 operator -(Matrix3 arg) => clone()..sub(arg);