c++ OpenGL
碳酸钙的01妖精
这个作者很懒,什么都没留下…
展开
-
OpenGL 绘图基础(OpenGL编译环境配置 + 正方形 +五角星)
visual c++ 6.0 搭载OpenGL 安装GLUT工具包GLUT不是OpenGL所必须的,但它会给的学习带来一定的方便,推荐安装。 Windows环境下安装GLUT的步骤: (1)“d:\ProgramFiles\MicrosoftVisualStudio\VC98\lib文件夹”)。 把解压得到的glut.lib和glut32.lib放到静态函数库所在文件夹,即lib文件...原创 2018-06-04 10:46:32 · 874 阅读 · 0 评论 -
OpenGL 画螺旋线
#include <windows.h>#include <gl/glut.h>#include <math.h>#define GL_PI 3.1415fstatic GLfloat xRot = 0.0f;static GLfloat yRot = 0.0f;void RenderScene(void){ GLfloat x,y,...原创 2018-06-04 11:22:10 · 1250 阅读 · 0 评论 -
OpenGL 画彩色立方体
#include <windows.h>#include <gl/glut.h>#include <math.h>#define GL_PI 3.1415fstatic GLfloat xRot = 0.0f;static GLfloat yRot = 0.0f;void RenderScene(void){ float fz,bz; glClear(G...原创 2018-06-04 14:08:06 · 2925 阅读 · 0 评论 -
OpenGL (太阳,地球,月亮 +太阳系八大行星)
OpenGL 画太阳,地球,月亮#include <windows.h>#include <gl/glut.h>#include <math.h>#define GL_PI 3.1415fstatic GLfloat xRot = 0.0f;static GLfloat yRot = 0.0f;GLfloat whiteLight[]={0.2f,0.2f,0...原创 2018-06-20 12:00:47 · 9710 阅读 · 4 评论