Files Classes Functions Hierarchy
00001 #ifndef WINDOWSCALED2TEST_H 00002 #define WINDOWSCALED2TEST_H 00003 00004 #include <string> 00005 #include <cmath> 00006 using namespace std; 00007 00008 #include <func.h> 00009 #include <gobj.h> 00010 #include <pointsgraph.h> 00011 00015 class windowscaleD2test 00016 { 00018 gobjContainer xGraphics; 00020 static void keyboard01(unsigned char key, int x, int y); 00022 static void display01(); 00023 public: 00024 00026 static string doc[]; 00027 00029 static int test001(int argc, char** argv); 00031 void test002(int argc, char** argv); 00032 00034 funcA1( y01,-x*x+1.0,x,double,double ); 00035 funcA1( y02,sin(x),x,double,double ); 00036 funcA1( y03, 5.0/x ,x,double,double ); 00037 //funcA1( y03, (x==0)*0+(x!=)*x ,x,double,double ); 00038 funcA1( y04,cos(x),x,double,double ); 00039 y04 f04; 00040 double f04time; 00041 double f04timedx; 00042 pointsgraphtime* f04pg; 00043 00044 static windowscaleD2test* windowtest; 00045 00046 }; 00047 00048 #endif 00049
1.5.8