-
OpenGL新功能
OpenGL新功能--顶点缓冲区-OpenGL new features-- Vertex Buffer
- 2022-06-20 07:35:55下载
- 积分:1
-
opengl 2D Bitmap Texture Font例子
opengl 2D Bitmap Texture Font例子-opengl 2D Bitmap Font examples Texture
- 2022-06-01 01:55:23下载
- 积分:1
-
OpenGL下三维模型的显示和自由旋转,应用虚拟球的方法,实现3D模型的自由旋转...
OpenGL下三维模型的显示和自由旋转,应用虚拟球的方法,实现3D模型的自由旋转-OpenGL under the three-dimensional model of the display and free rotation, application of the method of the virtual ball, the realization of 3D model of free rotation
- 2022-02-02 08:49:22下载
- 积分:1
-
二
二维图像的三维显示 详细信息 < OpenGL > 本人为了图像处理的需要,很想实现二维图像的三维显示,于是写了本代码,希望与此有兴趣的读者共享。图像的获取一是bmp图像文件,二是来自剪贴板。本代码在MFC中调用OpenGL库函数来实现二维图像的三维显示,图像的宽度、高度和象素的亮度分别为三维空间的x,z,y坐标。程序主要有初始化、绘图、资源释放和操作部分,这些功能在OGL_MFCView.cpp文件中实现。OpenGL库的初始化在该文件中的OnCreate,InitScene和DrawScene函数中实现,主要初始化OpenGL运行时的环境变量,三维物体的光照,材质等,由于介绍OpenGL库的初始化的文档很多,在这里我就不多说了,感兴趣的读者可以参考有关的文档。在DrawScene函数中调用全局函数GLDraw3DBMP完成绘图部分。编译源代码时,必须把opengl32.lib glu32.lib链到工程中。 可以通过对话框改变材质。按上下箭头键可以实现三维图像的绕x轴旋转,按左右箭头键可以实现三维图像绕z轴旋转。本代码在Windows2000下编译通过。 -two-dimensional images of three-dimensional display detailed information Image Processing himself to the needs and would like to achieve th ree-dimensional two-dimensional images, then wrote the code, with the readers are interested in sharing. Image Access First bmp image files, two from the clipboard. The MFC code Calling OpenGL library functions to achieve the three-dimensional two-dimensional image display, image width, height and pixel brightness of the three-dimensional space x, z, y co
- 2022-05-22 12:29:02下载
- 积分:1
-
利用OPENGL做的日地月模型,适合于图形学初学者以及opengl初学编程...
利用OPENGL做的日地月模型,适合于图形学初学者以及opengl初学编程-OPENGL done on the use of the Earth-Moon model, suitable for beginners as well as the opengl graphics programming beginners
- 2023-03-05 04:45:04下载
- 积分:1
-
一个教你如何在OpenGL开发环境VC添加更多的文件
一个教你如何将opengl开发环境加到vc多文档中来-a teach you how to opengl development environment vc added more documentation to
- 2022-08-15 12:38:48下载
- 积分:1
-
这是OPENGL和VC++制作的3D文件载入演示.载入的是.ase文件,同时还做了多个贴图....
这是OPENGL和VC++制作的3D文件载入演示.载入的是.ase文件,同时还做了多个贴图.-This is the VC and OpenGL 3D production of documents included in the demonstration. Contained yes. Ase documents, also done a number of map.
- 2022-03-15 23:50:37下载
- 积分:1
-
用opengl和VC++实现的飞机俯冲的过程
用opengl和VC++实现的飞机俯冲的过程-Use opengl and VC to achieve the process of subduction of the aircraft
- 2022-07-18 16:50:19下载
- 积分:1
-
该代码详细给出了opegGL中二维纹理生成的实例,对于openGL初学者了解纹理生成有很大帮助...
该代码详细给出了opegGL中二维纹理生成的实例,对于openGL初学者了解纹理生成有很大帮助
-texture generating
- 2022-06-14 05:11:12下载
- 积分:1
-
DDA 算法的实现
数字微分分析器或只是简略的 DDA 直线绘制算法是用于光栅图形设备中绘制线条。在这种算法,在行的开始和结束位置已提供。
中介像素位置将在起始点和结束点之间的时间间隔的变量线性内插法计算。该算法如下所示:
让开始和结束点线的是 (x 1,y1) 和 (x2,y2),分别。所以坡、 m = (y2-y1)/(x2-x1)。根据 m 和该象限的 (x,y) 的值属于,中介像素职位要计算如下:
职位要计算如下:
象限
m < = 1
m > 1
第一次
x = x + 1
y = y + m
x = x + 1/m
y = y + 1
第二次
x = x 1
y = y + m
- 2022-08-10 08:17:23下载
- 积分:1