clone method

Matrix3 clone()

Creates a new Matrix3 and with identical elements to this one.

Implementation

Matrix3 clone() {
  return Matrix3.identity().copyFromArray(storage.toList());
}