Vector3 operator -(Point3D p2)

Returns the Vector3 pointing from the given point to this point.

Source

Vector3 operator-(Point3D p2) => new Vector3(this.x - p2.x, this.y - p2.y, this.z - p2.z);