mirror of
https://github.com/thunderbrewhq/typhoon.git
synced 2025-12-12 02:22:30 +00:00
feat(plane): add C4Plane
This commit is contained in:
parent
7b822f9812
commit
28b22e3bbd
2 changed files with 19 additions and 0 deletions
6
tempest/Plane.hpp
Normal file
6
tempest/Plane.hpp
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
#ifndef TEMPEST_PLANE_HPP
|
||||||
|
#define TEMPEST_PLANE_HPP
|
||||||
|
|
||||||
|
#include "tempest/plane/C4Plane.hpp"
|
||||||
|
|
||||||
|
#endif
|
||||||
13
tempest/plane/C4Plane.hpp
Normal file
13
tempest/plane/C4Plane.hpp
Normal 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
|
||||||
Loading…
Add table
Add a link
Reference in a new issue