00001 #ifndef _Plane3_H__ 00002 #define _Plane3_H__ 00003 00004 #include "vector3.h" 00005 00006 namespace GtpVisibilityPreprocessor { 00007 00009 class Plane3 { 00010 public: 00011 Vector3 mNormal; 00012 float mD; 00013 }; 00014 00015 00016 }; 00017 00018 00019 00020 #endif