bool intersectsSphere(Sphere sphere) { var radiusSum = radius + sphere.radius; return sphere.center.distanceToSquared(center) <= (radiusSum * radiusSum); }