feat(plane): add C4Plane

This commit is contained in:
fallenoak 2022-12-24 23:02:01 -06:00
parent 7b822f9812
commit 28b22e3bbd
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
2 changed files with 19 additions and 0 deletions

13
tempest/plane/C4Plane.hpp Normal file
View file

@ -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