コード例 #1
0
static void
motion(int x, int y)
{
    DELTAX -= MOUSEX - x;
    DELTAY += MOUSEY - y;
    MOUSEX = x;
    MOUSEY = y;
    tbMotion(x, y);
}
コード例 #2
0
ファイル: FTGLMFontDemo.cpp プロジェクト: AbdelghaniDr/mirror
void motion(int x, int y)
{
    tbMotion(x, y);
}
コード例 #3
0
void motion(int x, int y){
  tbMotion(x,y,mouseButton);
  glutPostRedisplay();
}
コード例 #4
0
void
motion(int x, int y)
{
  tbMotion(x, y);
  glutPostRedisplay();
}