Vector3.copy constructor

Vector3.copy(
  1. Vector3 other
)

Copy of other.

Implementation

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