copy method

Vector4 copy(
  1. Vector4 v
)

Implementation

Vector4 copy(Vector4 v) {
  x = v.x;
  y = v.y;
  z = v.z;
  w = v.w;

  return this;
}