add method

Vector3D add(
  1. Vector3D o
)

Implementation

Vector3D add(Vector3D o) => .vec3(x + o.x, y + o.y, z + o.z);