Files Classes Functions Hierarchy
00001 #ifndef MAZEDISP02_H 00002 #define MAZEDISP02_H 00003 00004 #include <cellD2.h> 00005 #include <gobj.h> 00006 #include <mazematrixD2.h> 00007 #include <point.h> 00008 00016 class mazedisp02 : gobj 00017 00018 { 00019 public: 00020 00022 mazematrixD2<uint> mz; 00023 00025 double dx; 00026 00028 bool displaycellid; 00029 00031 bool pipes; 00032 point3<double> pipecolor; 00033 00035 bool walls; 00037 point3<double> wallcolor; 00038 00040 mazedisp02 00041 ( 00042 doublec dx_, 00043 mazematrixD2<uint> const & mz_ 00044 ); 00045 00047 void draw(); 00048 00050 void celldraw 00051 ( 00052 cellD2<uint> const & x, 00053 point2<double> const & p 00054 ); 00055 00057 void celldraw2 00058 ( 00059 cellD2<uint> const & x, 00060 point2<double> const & p 00061 ); 00062 00063 }; 00064 00065 00066 #endif 00067
1.5.8