-
OpenGL三维场景绘制
本文原版由以上不知名牛人完成,最后由我这不知名非牛人补充。。。。。已经很详细了,只是关键帧块信息还是不全。。。留带他人补充并附带由本人写的3ds文件读取源码(抛砖之作)。。。还有许多“块”我并没有写入本文档中,这是因为我并不知道他们有什么用,如果你知道的话请来信告诉我。当我获得更多关于3ds文件结构的信息的时候,我将重写这篇文档。这篇文档描述了由AutoDesk公司的3ds max产生的3ds文件的结构,因此你将无法从AutoDesk公司以及其他任何与AutoDesk公司有关系的公司获得有关二进制的.3ds和.mli文件的性质和内容的任何支持。警告:本文档描述了版本号为3.0或更高版本的.3ds文件,你可以获得.3ds的版本信息,这些信息在二进制的.3ds文件中第29字节处(译者:似乎不在,版本号在块ID为:0x0002的块里)。现在就要开始我们的内容了,我将按照如下的方式组织内容:1.介绍。2.3D编辑块3.关键帧块
- 2022-03-21 18:38:14下载
- 积分:1
-
一个MFC建立使用OpenGL的模板,VC6可以建立这个项目
一个MFC建立的使用OpenGL的模板,可以在VC6中建立以此项目为基础的项目生成向导,在此基础上方便地使用OpenGL,免去配置OpenGL库的麻烦-an MFC to establish the use OpenGL template, VC6 can build this project-based projects generated guides, Based on this convenient to use OpenGL, OpenGL configuration removed from the troubles
- 2023-03-15 09:20:03下载
- 积分:1
-
The use of virtual reality technology used in modeling Creator Tutorial
虚拟现实技术使用Creator建模所用教程-The use of virtual reality technology used in modeling Creator Tutorial
- 2022-07-01 12:45:08下载
- 积分:1
-
在系统了我们绘制了一个正方形,可以通过鼠标的捻选框实现物体的放大和缩小...
在系统了我们绘制了一个正方形,可以通过鼠标的捻选框实现物体的放大和缩小-In the system that we draw a square, you can twist the mouse box object realize zoom in and out
- 2022-04-20 11:45:07下载
- 积分:1
-
delphi写的opengl模拟太阳系运行的小程序,可以用键盘控制转动!...
delphi写的opengl模拟太阳系运行的小程序,可以用键盘控制转动!-opengl Analog delphi written a small program to run the solar system can be used to rotate the keyboard control!
- 2022-04-20 03:45:51下载
- 积分:1
-
mixed use OpenGL technology to create artistic effects of the source
OpenGL中使用混合技术创造艺术效果的源程序-mixed use OpenGL technology to create artistic effects of the source
- 2023-01-03 10:45:03下载
- 积分:1
-
opengl3d小游戏
这个游戏包含了opengl3d游戏的所有基本元素,包括天空的绘制,地形的绘制(地形所用的是已有的高度图,没有用其他算法),md2模型的导入,模型动画的设置,场景内漫游,敌人是极其简单的AI,游戏的内容不多,但是涉及面很广,欢迎大家下载。
- 2022-07-21 12:43:01下载
- 积分:1
-
使用OpenGL库函数来绘制一个各顶点颜色不同的立方体,对OpenGL绘制立体图形很有参考价值。...
使用OpenGL库函数来绘制一个各顶点颜色不同的立方体,对OpenGL绘制立体图形很有参考价值。-OpenGL library functions used to map a different color each vertex of the cube, a three-dimensional rendering of OpenGL graphics great reference value.
- 2022-08-23 16:06:53下载
- 积分:1
-
实现基本的几何三的使用
利用OPENGL实现基本三维几何图像的绘制和显示,源代码。-OPENGL realize the use of basic geometric three-dimensional image rendering and display, the source code.
- 2023-07-09 04:10:04下载
- 积分:1
-
OpenGL MUST Project 1[Polyline Editor] use linked list of C++
#include
#include
#include
#include
#include "point.h"
/*draw line from the line array*/
void drawPointLine()
{
Node * temp;
for (int i=0;inext!=NULL)
{
temp=temp->next;
glVertex2i(temp->x,temp->y);
}
glEnd();
}
}
/*find the point and delete the point from the line array*/
void delpointFun(int xx,int yy)
{
for (int i=0;inext!=NULL)
{&n
- 2022-01-31 23:45:53下载
- 积分:1