예제 #1
0
static void
mouse(int button, int state, int x, int y)
{
    MOUSEX = x;
    MOUSEY = y;
    tbMouse(button, state, x, y);
}
예제 #2
0
void mouse(int button, int state, int x, int y){
  
  mouseButton=button;
  tbMouse(button, state, x,y);
  glutPostRedisplay();
}
예제 #3
0
void mouse(int button, int state, int x, int y)
{
    tbMouse(button, state, x, y);
}