Return if this intersects with other.
other
bool intersectsWithSphere(Sphere other) { final radiusSum = radius + other.radius; return other.center.distanceToSquared(center) <= (radiusSum * radiusSum); }