00001 // Plane Class by Alan Baylis 2001 00002 00003 #ifndef PlaneH 00004 #define PlaneH 00005 00006 class PLANE 00007 { 00008 public: 00009 PLANE(); 00010 ~PLANE(); 00011 00012 float nx; 00013 float ny; 00014 float nz; 00015 float Distance; 00016 }; 00017 00018 #endif