Distance from point to the boundary surface in world units, 0 when point is inside.
point
0
@override double distanceTo(Vector3 point) { final d = (point - center).length - radius; return d > 0 ? d : 0.0; }