#ifndef timing_h #define timing_h static inline double time_now(void) { int now = glutGet(GLUT_ELAPSED_TIME); return now * 0.001; } #endif