Files Classes Functions Hierarchy
00001 #ifndef VISPOINT_H 00002 #define VISPOINT_H 00003 00004 #include <string> 00005 using namespace std; 00006 00007 #include <gobj.h> 00008 #include <graphmisc.h> 00009 #include <point.h> 00010 #include <visoperator.h> 00011 00015 class vispointxml : public visoperator 00016 { 00017 public: 00019 void handlecommand(bool & matches, viscmd & c ); 00020 00022 pt3 color; 00023 00025 bool colorrandom; 00026 00027 /* When adding points to pi display them. */ 00028 bool pointdisplay; 00029 00031 gobjQuadric* sphere01; 00032 00034 stringc id() const 00035 { return string("pointxml"); } 00036 00038 void defaultsettings(); 00039 00041 void piaddpoint(bool& res, stringc & s ); 00042 00043 /* Default state. */ 00044 vispointxml(); 00045 00046 }; 00047 00048 00049 #endif 00050
1.5.8