Files Classes Functions Hierarchy
00001 #ifndef POINTSGRAPHTIMED2_H 00002 #define POINTSGRAPHTIMED2_H 00003 00010 class pointsgraphtimeD2 : public pointsgraph 00011 { 00012 public: 00013 00015 uint N; // N-1 segments as points on ends. 00016 00018 uint Ncurrent; 00019 00021 deque<double> ytime; 00022 00023 pointsgraphtimeD2 00024 ( 00025 uintc N_, 00026 windowscaleD2 const & screen_, 00027 windowscaleD2 const & world_ 00028 ); 00029 00031 void push_back(doublec y); 00033 void push_front(doublec y); 00034 00036 void update(); 00037 }; 00038 00039 00040 00041 #endif 00042
1.5.8