00001 // Polygon Class by Alan Baylis 2001 00002 00003 #ifndef PolygonH 00004 #define PolygonH 00005 00006 #include "texture.h" 00007 #include "vector.h" 00008 #include "vertex.h" 00009 00010 class POLYGON 00011 { 00012 public: 00013 POLYGON(); 00014 ~POLYGON(); 00015 00016 VECTOR GetNormal(); 00017 void SetNormal(); 00018 00019 TEXTURE Texture; 00020 VERTEX Vertex[3]; 00021 }; 00022 00023 #endif