add method

Vector3C add(
  1. Vector3C o
)

Implementation

Vector3C add(Vector3C o) => set(x + o.x, y + o.y, z + o.z);