sub method

Matrix3 sub(
  1. Matrix3 rhs
)

Implementation

Matrix3 sub( Matrix3 rhs) {
  for (int row = 0; row < storage.length; ++row) {
    storage[row] -= rhs.storage[row];
  }
  return this;
}