Matrix4.copy constructor

Matrix4.copy(
  1. Matrix4 other
)

Copies values from other.

Implementation

factory Matrix4.copy(Matrix4 other) => Matrix4.zero()..setFrom(other);