2022-10-09 05:13:17 +00:00
|
|
|
#ifndef _CSPHERE
|
|
|
|
#define _CSPHERE
|
2022-09-29 23:55:38 +00:00
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
|
2022-10-05 23:45:48 +00:00
|
|
|
#include "Kyoto/Math/CUnitVector3f.hpp"
|
2022-10-09 05:13:17 +00:00
|
|
|
#include "Kyoto/Math/CVector3f.hpp"
|
2022-09-29 23:55:38 +00:00
|
|
|
|
|
|
|
class CSphere {
|
|
|
|
public:
|
2022-10-09 05:37:23 +00:00
|
|
|
CSphere(const CVector3f& pos, float radius) : x0_pos(pos), xc_radius(radius) {}
|
2022-09-29 23:55:38 +00:00
|
|
|
|
2022-10-05 23:45:48 +00:00
|
|
|
CUnitVector3f GetSurfaceNormal(const CVector3f& v) const;
|
2022-09-29 23:55:38 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
CVector3f x0_pos;
|
2022-10-09 05:37:23 +00:00
|
|
|
float xc_radius;
|
2022-09-29 23:55:38 +00:00
|
|
|
};
|
|
|
|
CHECK_SIZEOF(CSphere, 0x10)
|
|
|
|
|
2022-10-09 05:13:17 +00:00
|
|
|
#endif // _CSPHERE
|