Files Classes Functions Hierarchy
00001 #ifndef SPRINGLINEARGEOM_H 00002 #define SPRINGLINEARGEOM_H 00003 00004 #include <vector> 00005 using namespace std; 00006 00007 #include <typedefs.h> 00008 00009 00010 class springlineargeom 00011 { 00012 public: 00013 00015 uint N; 00016 00018 vector<double> xoffsets; 00020 vector<double> lengths; 00022 vector<double> lengthscurrent; 00023 00025 void lengths_update(); 00026 00028 void construct(uintc N_); 00029 }; 00030 00031 #endif 00032 00033
1.5.8