From 28b22e3bbdc0085a2dfc0e09a9b77c5001552d7f Mon Sep 17 00:00:00 2001 From: fallenoak Date: Sat, 24 Dec 2022 23:02:01 -0600 Subject: [PATCH] feat(plane): add C4Plane --- tempest/Plane.hpp | 6 ++++++ tempest/plane/C4Plane.hpp | 13 +++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 tempest/Plane.hpp create mode 100644 tempest/plane/C4Plane.hpp diff --git a/tempest/Plane.hpp b/tempest/Plane.hpp new file mode 100644 index 0000000..7f8c4ad --- /dev/null +++ b/tempest/Plane.hpp @@ -0,0 +1,6 @@ +#ifndef TEMPEST_PLANE_HPP +#define TEMPEST_PLANE_HPP + +#include "tempest/plane/C4Plane.hpp" + +#endif diff --git a/tempest/plane/C4Plane.hpp b/tempest/plane/C4Plane.hpp new file mode 100644 index 0000000..b87acc8 --- /dev/null +++ b/tempest/plane/C4Plane.hpp @@ -0,0 +1,13 @@ +#ifndef TEMPEST_PLANE_C_4PLANE_HPP +#define TEMPEST_PLANE_C_4PLANE_HPP + +#include "tempest/Vector.hpp" + +class C4Plane { + public: + // Member variables + C3Vector n; + float d; +}; + +#endif