add method

Vector3 add(
  1. Vector3 v
)

Implementation

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

  return this;
}