typhoon/tempest/plane/C4Plane.hpp

16 lines
250 B
C++
Raw Normal View History

2022-12-24 23:02:01 -06:00
#ifndef TEMPEST_PLANE_C_4PLANE_HPP
#define TEMPEST_PLANE_C_4PLANE_HPP
#include "tempest/Vector.hpp"
class C4Plane {
public:
// Member variables
C3Vector n = { 0.0f, 0.0f, 1.0f };
float d = 0.0f;
C4Plane() = default;
2022-12-24 23:02:01 -06:00
};
#endif