在openGl中使用过剩的Passive Motion Func时出现奇怪的输出

时间:2014-09-26 16:40:13

标签: opengl glut

我正在尝试使用glutSolidSphere(0.2,20,20)制作一个圆圈;按照我的光标位置 我正在开发这个作为小游戏的一部分 因为我正在使用以下功能

void main()
{   ...
    glutPassiveMotionFunc(mouse_co_ordinates);
    ...
}

void mouse_co_ordinates(int x,int y)
{
  printf("%d %d\n",x,y); //circle will be made to follow these co-ordinates
}

执行此操作并在窗口中移动鼠标会产生以下输出

403 21
-1。#IND00 -1。#IND00
402 28
402 43
402 60
402 79

我不明白什么是" -1。#IND00 -1。#IND00" 任何帮助都是有用的

0 个答案:

没有答案