#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