add method

Vector4 add(
  1. Vector4 v
)

Implementation

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

  return this;
}