sub method

Vector3D sub(
  1. Vector3D o
)

Implementation

Vector3D sub(Vector3D o) => .vec3(x - o.x, y - o.y, z - o.z);