扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
作者:佚名 来源:论坛 2007年10月21日
关键字:
#include "windows.h" #include "gl/gl.h" #include "gl/glaux.h" #include "gl/glu.h" #include "math.h" void myinit() { glClearColor(1,1,0,0); GLfloat ambient[]={.5,.5,.5,0}; glLightModelfv(GL_LIGHT_MODEL_AMBIENT, ambient); GLfloat mat_ambient[]={.8,.8,.8,1.0}; GLfloat mat_diffuse[]={.8,.0,.8,1.0}; GLfloat mat_specular[]={1.0,.0,1.0,1.0}; GLfloat mat_shininess[]={50.0}; GLfloat light_diffuse[]={0,0,.5,1}; GLfloat light_position[]={0,0,1.0,0}; glMaterialfv(GL_FRONT_AND_BACK,GL_AMBIENT,mat_ambient); glMaterialfv(GL_FRONT_AND_BACK,GL_DIFFUSE,mat_diffuse); glMaterialfv(GL_FRONT_AND_BACK,GL_SPECULAR,mat_specular); glMaterialfv(GL_FRONT_AND_BACK,GL_SHININESS,mat_shininess); glLightfv(GL_LIGHT0, GL_DIFFUSE, light_diffuse); glLightfv(GL_LIGHT0,GL_POSITION, light_position); glEnable(GL_LIGHTING); glEnable(GL_LIGHT0); glDepthFunc(GL_LESS); glEnable(GL_DEPTH_TEST); } void CALLBACK display() { glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT); auxSolidSphere(1.0); // 绘制半径为1.0的实体球 glFlush(); // 强制输出图像 auxSwapBuffers(); // 交换绘图缓存 _sleep(100); } void CALLBACK Idledisplay() { // x,y满足x2+y2=0.01。这样可以使物体沿该圆轨迹运动。 static float x=-.1,y=0.0; static BOOL mark=TRUE; static float step=.01; x+=step; if(x<=.1&&x>=-.1) { if(step>0) y=sqrt(.01-x*x); else y=-sqrt(.01-x*x); glTranslatef(x,y,0); } else { step=0-step; } display(); } void CALLBACK myReshape(GLsizei w,GLsizei h) { glViewport(0,0,w,h); glMatrixMode(GL_PROJECTION); glLoadIdentity(); if(w<=h) glOrtho(-3.5,3.5,-3.5*(GLfloat)w/(GLfloat)h, 3.5*(GLfloat)w/(GLfloat)h,-10,10); else glOrtho(-3.5*(GLfloat)w/(GLfloat)h,3.5* (GLfloat)w/(GLfloat)h,-3.5,3.5,-10,10); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); } void main() { auxInitDisplayMode(AUX_DOUBLE|AUX_RGBA); auxInitPosition(0,0,400,400); auxInitWindow(" circle "); myinit(); auxReshapeFunc(myReshape); auxIdleFunc(Idledisplay); auxMainLoop(display); } |
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者