operator - method

Sp3dV3D operator -(
  1. Sp3dV3D v
)

Implementation

Sp3dV3D operator -(Sp3dV3D v) {
  return Sp3dV3D(x - v.x, y - v.y, z - v.z);
}