add method

Vector4D add(
  1. Vector4D o
)

Implementation

Vector4D add(Vector4D o) => .vec4(x + o.x, y + o.y, z + o.z, w + o.w);