Return the signed distance from point to this plane.
point
double distanceToVector3(Vector3 point) => _normal.dot(point) + constant;