mirror of
https://github.com/thunderbrewhq/typhoon.git
synced 2025-12-12 02:22:30 +00:00
feat(sphere): add CAaSphere
This commit is contained in:
parent
697c011eb9
commit
83934acd71
2 changed files with 19 additions and 0 deletions
6
tempest/Sphere.hpp
Normal file
6
tempest/Sphere.hpp
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
#ifndef TEMPEST_SPHERE_HPP
|
||||||
|
#define TEMPEST_SPHERE_HPP
|
||||||
|
|
||||||
|
#include "tempest/sphere/CAaSphere.hpp"
|
||||||
|
|
||||||
|
#endif
|
||||||
13
tempest/sphere/CAaSphere.hpp
Normal file
13
tempest/sphere/CAaSphere.hpp
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
#ifndef TEMPEST_SPHERE_C_AASPHERE_HPP
|
||||||
|
#define TEMPEST_SPHERE_C_AASPHERE_HPP
|
||||||
|
|
||||||
|
#include "tempest/Vector.hpp"
|
||||||
|
|
||||||
|
class CAaSphere {
|
||||||
|
public:
|
||||||
|
// Member variables
|
||||||
|
C3Vector c;
|
||||||
|
float r;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
Loading…
Add table
Add a link
Reference in a new issue