5Sphere3f::Sphere3f(
const EGG::Vector3f &v, f32 r) : pos(v), radius(r) {}
10bool Sphere3f::isInsideOtherSphere(
const Sphere3f &rhs)
const {
11 f32 radiusDiff = rhs.radius - radius;
12 if (radiusDiff < 0.0f) {
16 return rhs.pos.
ps_sqDistance(this->pos) < radiusDiff * radiusDiff;
Represents a sphere in 3D space.
f32 ps_sqDistance(const Vector3f &rhs) const
Paired-singles impl. of sqDistance.