-
俄罗斯方块OpenGL实现
本项目是一个用OpenGL实现的俄罗斯方块的源代码。俄罗斯方块的功能和玩法执行文件中会出现提示
- 2023-05-18 03:30:04下载
- 积分:1
-
Using OpenGL to draw a Bezier curve, did not call OpenGL drawing function, a dir...
用OpenGL来画一个Bezier曲线,没有调用OpenGL的画图函数,直接实现的算法。-Using OpenGL to draw a Bezier curve, did not call OpenGL drawing function, a direct realization of the algorithm.
- 2022-09-04 09:20:03下载
- 积分:1
-
use OpenGL simulated solar system planet operation, rotating Opengl beginners le...
利用OpenGL模拟太阳系星球运转,Opengl初学者学习旋转等基本函数的很好实例-use OpenGL simulated solar system planet operation, rotating Opengl beginners learn the basic functions of a good example
- 2022-04-12 00:49:23下载
- 积分:1
-
Delphi series of the OpenGL 3D maze, with the map editor (update).
Delphi系列的OpenGL三维迷宫,带有地图编辑器(更新)。
- 2022-01-25 22:26:10下载
- 积分:1
-
OpenGL function summary to let you quickly access each of the functions of OpenG...
OpenGL的函数汇总,让你快速查阅每一个OpenGL函数的功能及用法.-OpenGL function summary to let you quickly access each of the functions of OpenGL functions and usage.
- 2022-01-25 15:51:58下载
- 积分:1
-
一个用调色板配合OpenGL写的一个三维物体在空间中飞行变换的VC例程,适合OpenGL的初学者学习。...
一个用调色板配合OpenGL写的一个三维物体在空间中飞行变换的VC例程,适合OpenGL的初学者学习。-using a palette with a written OpenGL 3D objects in space flight transform the VC routines suitable for beginners to learn OpenGL.
- 2022-02-01 13:22:33下载
- 积分:1
-
This is a screen saver, OpenGL VC production, light code, the result was terrifi...
这是一个屏幕保护程序,有OPENGL+VC++制作,轻量的代码,效果却很棒.-This is a screen saver, OpenGL VC production, light code, the result was terrific.
- 2023-01-26 23:05:04下载
- 积分:1
-
OpenGL介绍 由SGI公司的GL发展而来的一个工业标准图形库。 OpenGL由图形库GL(Graphics Library)...
OpenGL介绍 由SGI公司的GL发展而来的一个工业标准图形库。 OpenGL由图形库GL(Graphics Library)和应用图形库GLU(Graphics Library Utilities)两个库组成-OpenGL# 61548 introduced by SGI"s GL from the development of an industry-standard graphics library.# 61548 by the OpenGL graphics library GL (Graphics Library) and the application of graphics library GLU (Graphics Library Utilities) 2 component library
- 2022-03-18 17:40:04下载
- 积分:1
-
这是利用OpenGL开发三维游戏书中的代码,非常经典,有喜欢的朋友一起分享!...
这是利用OpenGL开发三维游戏书中的代码,非常经典,有喜欢的朋友一起分享!-This is the use of OpenGL to develop three-dimensional game code book, very classic favorite has to share with friends!
- 2023-07-16 20:20:03下载
- 积分: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