#ifndef _Plane3_H__ #define _Plane3_H__ #include "vector3.h" namespace GtpVisibilityPreprocessor { /** 3D Plane */ class Plane3 { public: Vector3 mNormal; float mD; }; }; #endif