A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
Sphere.hh
1#pragma once
2
3#include "egg/math/Vector.hh"
4
5namespace EGG {
6
8struct Sphere3f {
9 Sphere3f(const Vector3f &v, f32 r);
10
11 [[nodiscard]] bool isInsideOtherSphere(const Sphere3f &rhs) const;
12
13 Vector3f pos;
14 f32 radius;
15};
16
17} // namespace EGG
EGG core library.
Definition Archive.cc:6
Represents a sphere in 3D space.
Definition Sphere.hh:8
bool isInsideOtherSphere(const Sphere3f &rhs) const
Not actually part of EGG. Included here for compartmentalization.
Definition Sphere.cc:10
A 3D float vector.
Definition Vector.hh:83