-
opengl的入门级例子
opengl demo本工程是一个完美的opengl 演示程序,它简单易懂,即使是没有学过opengl 的同学也能看懂但同时它又功能完善,基本概括了opengl 3的整个固定渲染管线,包括场景搭建,摄像机控制,模型建立,场景渲染,甚至还有交互过程设计总之,这个是我当初学习opengl的一个最好的demo
- 2022-10-08 18:10:02下载
- 积分:1
-
OPGL演示例子,比较适合新手学习学习,比较简单实在
OPGL演示例子,比较适合新手学习学习,比较简单实在-OPGL demonstration example, more suitable for novice learn from, relatively simple really
- 2022-08-02 11:37:01下载
- 积分:1
-
The code is a CD
该代码是游戏编程光盘中所带,里面讲述了如何用OpenGL进行游戏设计。希望有喜欢的朋友一起分享-The code is a CD-ROM brought the game programming, which describes how to use OpenGL for game design. Want to have friends like to share
- 2022-03-23 16:52:45下载
- 积分:1
-
三维物体绘制与变换,使用OpenGL绘制空间立体图形并实现立体图形的变换及视角变换。
创建空间中的立方体
支持鼠标选择立方体
支持对选中立方体的平移...
三维物体绘制与变换,使用OpenGL绘制空间立体图形并实现立体图形的变换及视角变换。
创建空间中的立方体
支持鼠标选择立方体
支持对选中立方体的平移、旋转、放缩变换
支持对视点进行变换
-Three-dimensional objects drawn with the transformation, three-dimensional space using the OpenGL graphics rendering and realize three-dimensional graphics transform and perspective transform. Create a space to support the mouse to choose cube cube cube to support the selected translation, rotation, zoom support for the perspective transform to transform
- 2022-04-17 02:43:56下载
- 积分:1
-
在MFC下,利用OpenGL实现了一个水坝坍塌的过程,对边界以及障碍物进行了物理的定义。...
在MFC下,利用OpenGL实现了一个水坝坍塌的过程,对边界以及障碍物进行了物理的定义。-In MFC, the use of OpenGL to achieve a process of collapse of a dam on the border, as well as a physical barrier definition.
- 2022-02-12 00:15:12下载
- 积分:1
-
在OpenGL的烟花
控制台应用程序:屏保项目概述
- 2022-06-01 09:21:30下载
- 积分:1
-
这是OPENGL的第二个例子,这个例子实现了LIGHT的实现,
这是OPENGL的第二个例子,这个例子实现了LIGHT的实现,-OPENGL This is the second example, this example to achieve the realization of the LIGHT,
- 2022-06-26 11:55:46下载
- 积分:1
-
生成三维喷泉,能进行三维的旋转,效果不错
生成三维喷泉,能进行三维的旋转,效果不错-Generate three-dimensional fountain, capable of three-dimensional rotation, the effect of good
- 2023-08-24 12:15:04下载
- 积分:1
-
opengl绘制管道
通过定义直线段以及管道的半径,生成管道外壁,可以是任意弯曲的管道,通过数学算法算出拼接程管道的外壁长方形,通过正方形拼接成管道,可以设置算法的计算精度,精度越高用更多的长方形拼接出管道
- 2022-11-03 12:30:03下载
- 积分:1
-
OpenGL 3D 图形( MATLAB)
翻译 maninwest@Codeforge 作者:roozbehabolpour@CodeProject这里,我们将使用 OpenGL 接口进行 3D 科学计算可视化。OpenGL 是进行 2D 和 3D 计算机图像渲染的跨语言程序设计接口 (API)。 OpenGL比虚拟现实工具箱更加快捷方便。使用代码使用这个项目非常简单。在 MATLAB 中,你必须定义对象的点,必须定义网眼的相邻矩阵。例如 ,如果你要创建一个泉水,必须首先定义点N=2000;
X_points=zeros(N,1);
Y_points=zeros(N,1);
Z_points=zeros(N,1);
Adj=zeros(N,N); for i=1:N
X_points(i)=cos(2*pi*5*i/N);
Y_points(i)=sin(2*pi*5*i/N);
Z_points(i)=(5*i/N-2)/4; if i
- 2022-07-18 18:01:49下载
- 积分:1