// GLUT mouse motion handler #ifndef MOTION_H #define MOTION_H // called when a mouse button is pressed. extern "C" void mousePress(int b, int state, int x, int y); extern "C" void mouseDrag(int x, int y); #endif