clone method
Creates a new Matrix3 and with identical elements to this one.
Implementation
Matrix3 clone() {
return Matrix3.identity().copyFromArray(storage.toList());
}
Creates a new Matrix3 and with identical elements to this one.
Matrix3 clone() {
return Matrix3.identity().copyFromArray(storage.toList());
}