Files Classes Functions Hierarchy
00001 #ifndef CPSPHERE_H 00002 #define CPSPHERE_H 00003 00004 #include <vector> 00005 using namespace std; 00006 00007 #include <gobj.h> 00008 #include <point.h> 00009 #include <typedefs.h> 00010 00014 class cpsphere 00015 { 00016 public: 00017 00019 vector< point3<double> > const & pts; 00021 vector< point4<uint> > const & vi; 00022 00024 gobjContainer * current; 00025 00027 uint state; 00030 void stateinc(); 00033 void statedec(); 00034 00037 cpsphere 00038 ( 00039 vector< point3<double> > const & pts_, 00040 vector< point4<uint> > const & vi_ 00041 ); 00042 00044 ~cpsphere(); 00045 00048 void update(); 00049 00050 }; 00051 00052 #endif 00053 00054
1.5.8