Vector3.copy constructor

Vector3.copy(Vector3 other)

Copy of other.

Implementation

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