plane - Plane to check for intersection against.
plane
Determines whether or not this sphere intersects a given plane.
bool intersectsPlane(Plane plane) { return plane.distanceToPoint(center).abs() <= radius; }