如何将控制台应用程序转换到MFC下
这是控制台应用程序下的主函数intmain(intargc,char**argv){glutInit(&argc,argv);glutInitDisplayMode(GL...
这是控制台应用程序下的主函数
int main(int argc, char** argv){
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_SINGLE|GLUT_RGB);
glutInitWindowSize(640,480);
glutCreateWindow("HI");
init();
glutDisplayFunc(display);
glutReshapeFunc(reshape);
glutMouseFunc(mouse); //registered the mouse event.
glutMotionFunc(move); //registered the move event
glutMainLoop();
return 0;
}
我想把它放到MFC中应用,如何实现??
这个是关于OpenGL 轨迹球问题的程序
我已经在mfc下DrawScene()函数中完成了模型的现实,现在需要将模型随鼠标自由旋转。
glutMouseFunc(mouse);
glutMotionFunc(move); 添加到DrawScene()中后,编译连接都正确,只有运行时出错。不知道是不是这两个函数放错地方了。 展开
int main(int argc, char** argv){
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_SINGLE|GLUT_RGB);
glutInitWindowSize(640,480);
glutCreateWindow("HI");
init();
glutDisplayFunc(display);
glutReshapeFunc(reshape);
glutMouseFunc(mouse); //registered the mouse event.
glutMotionFunc(move); //registered the move event
glutMainLoop();
return 0;
}
我想把它放到MFC中应用,如何实现??
这个是关于OpenGL 轨迹球问题的程序
我已经在mfc下DrawScene()函数中完成了模型的现实,现在需要将模型随鼠标自由旋转。
glutMouseFunc(mouse);
glutMotionFunc(move); 添加到DrawScene()中后,编译连接都正确,只有运行时出错。不知道是不是这两个函数放错地方了。 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询