Matrix2.copy constructor

Matrix2.copy(Matrix2 other)

Copies values from other.

Implementation

factory Matrix2.copy(Matrix2 other) => new Matrix2.zero()..setFrom(other);