A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
EGG::Sphere3f Struct Reference

#include <Sphere.hh>

Description

Represents a sphere in 3D space.

Definition at line 8 of file Sphere.hh.

Public Member Functions

 Sphere3f (const Vector3f &v, f32 r)
 
bool isInsideOtherSphere (const Sphere3f &rhs) const
 Not actually part of EGG. Included here for compartmentalization.
 

Public Attributes

Vector3f pos
 
f32 radius
 

Constructor & Destructor Documentation

◆ Sphere3f()

EGG::Sphere3f::Sphere3f ( const Vector3f & v,
f32 r )

Definition at line 5 of file Sphere.cc.

Member Function Documentation

◆ isInsideOtherSphere()

bool EGG::Sphere3f::isInsideOtherSphere ( const Sphere3f & rhs) const
nodiscard0x8051A07C

Not actually part of EGG. Included here for compartmentalization.

Returns
True if this sphere is completely inside rhs.

Definition at line 10 of file Sphere.cc.

Member Data Documentation

◆ pos

Vector3f EGG::Sphere3f::pos

Definition at line 13 of file Sphere.hh.

◆ radius

f32 EGG::Sphere3f::radius

Definition at line 14 of file Sphere.hh.