A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
Sphere.cc
1#include "Sphere.hh"
2
3namespace EGG {
4
5Sphere3f::Sphere3f(const EGG::Vector3f &v, f32 r) : pos(v), radius(r) {}
6
10bool Sphere3f::isInsideOtherSphere(const Sphere3f &rhs) const {
11 f32 radiusDiff = rhs.radius - radius;
12 if (radiusDiff < 0.0f) {
13 return false;
14 }
15
16 return rhs.pos.ps_sqDistance(this->pos) < radiusDiff * radiusDiff;
17}
18
19} // namespace EGG
EGG core library.
Definition Archive.cc:6
Represents a sphere in 3D space.
Definition Sphere.hh:8
A 3D float vector.
Definition Vector.hh:83
f32 ps_sqDistance(const Vector3f &rhs) const
Paired-singles impl. of sqDistance.
Definition Vector.cc:89