mymath.cpp

00001 int signum(double x) 
00002 {
00003         if(x>0) return 1;
00004         else if(x==0) return 0;
00005         else return -1;
00006 }

Generated on Thu Sep 13 11:28:28 2007 for DCE-Eurobot by  doxygen 1.5.3