From 83934acd7186129e28bcbd87fb3b69b5f5eacec6 Mon Sep 17 00:00:00 2001 From: fallenoak Date: Sat, 24 Dec 2022 23:10:21 -0600 Subject: [PATCH] feat(sphere): add CAaSphere --- tempest/Sphere.hpp | 6 ++++++ tempest/sphere/CAaSphere.hpp | 13 +++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 tempest/Sphere.hpp create mode 100644 tempest/sphere/CAaSphere.hpp diff --git a/tempest/Sphere.hpp b/tempest/Sphere.hpp new file mode 100644 index 0000000..692e604 --- /dev/null +++ b/tempest/Sphere.hpp @@ -0,0 +1,6 @@ +#ifndef TEMPEST_SPHERE_HPP +#define TEMPEST_SPHERE_HPP + +#include "tempest/sphere/CAaSphere.hpp" + +#endif diff --git a/tempest/sphere/CAaSphere.hpp b/tempest/sphere/CAaSphere.hpp new file mode 100644 index 0000000..0e5c4f4 --- /dev/null +++ b/tempest/sphere/CAaSphere.hpp @@ -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