prime/include/Kyoto/Math/CSphere.hpp
Luke Street 1f56cefe8c Halfway match CAABox; continue CBallCamera
Former-commit-id: 602109d8f0a6ca9abd7ccdacab851e6c2a777fb8
2022-09-29 19:55:43 -04:00

21 lines
301 B
C++

#ifndef _CSPHERE_HPP
#define _CSPHERE_HPP
#include "types.h"
#include "Kyoto/Math/CVector3f.hpp"
class CSphere {
public:
CSphere(const CVector3f& pos, f32 radius) : x0_pos(pos), xc_radius(radius) {}
// TODO
private:
CVector3f x0_pos;
f32 xc_radius;
};
CHECK_SIZEOF(CSphere, 0x10)
#endif