Files Classes Functions Hierarchy
00001 #ifndef VISLINE_H 00002 #define VISLINE_H 00003 00004 #include <point.h> 00005 #include <visoperator.h> 00006 00010 class visline : public visoperator 00011 { 00012 public: 00013 00015 pt3 color; 00016 00018 visline(); 00019 00021 void handlecommand(bool & matches, viscmd & c ); 00022 00024 stringc id() const 00025 { return string("line"); } 00026 00027 }; 00028 00029 00030 #endif 00031 00032
1.5.8