-
iniFile
ini文件操作类适合VC程序员使用,精选学习源码,很好的参考资料。(The ini class file for VC programmers to use, select learning source code, a good reference.)
- 2013-12-25 10:18:58下载
- 积分:1
-
Poolcode
大学时的毕业设计,包括演示文稿,详细介绍了中国游戏开发的现状、Direct3D技术、DirectDraw技术介绍等。
(College graduation design, including presentation, detailing the status of the Chinese game development, Direct3D technology, DirectDraw technology introductions.)
- 2010-07-09 13:11:00下载
- 积分:1
-
MFC-library-Chinese-documents
MFC类库中文文档,介绍了各个类的函数和中文说明,是MFC程序员的好帮助。(MFC libraries, this paper introduces various Chinese documents of function and Chinese explains, be MFC programmers may help.
)
- 2011-04-20 15:40:42下载
- 积分:1
-
BSPTree
Binary Space Partioning Trees and Polygon
Removal in Real Time 3D Rendering(Binary Space Partioning Trees and PolygonRemoval in Real Time 3D Rendering)
- 2007-12-05 10:32:48下载
- 积分:1
-
NMM
数值流形方法的源代码,主要由于连续和非连续变形的分析,裂纹扩展的模拟等(NMM source code, mainly due to the continuous and discontinuous deformation analysis, simulation of crack propagation)
- 2020-06-26 17:00:02下载
- 积分:1
-
CE-exam
VC 经典案例 30例子 已经使用 华为等机考(VC classic case 30 examples have been used)
- 2013-11-02 10:00:18下载
- 积分:1
-
YCArray
说明: /**
* 动态数组的模板类
* 1.支持字符索引
* 2.方便的添加删除修改任意一项
* 最后更新 2004-8-9 yzh
**1.优化了字符索引的运作方式,使用数组存储
**2.重写了底层数据的存储,将连续性的存储方式改为了非连续,
*** 从而很好有效地支持了“引用”,并且让数据的删除增加变的更为快速
* 用法如:
* YCArray<int,int> test
* test.Add("Number2",4)
* test.Add("Number1",2)
* printf("%d %d",test["Number1"],test["Number2"])
* 显示:
* 2 4
*******
*******
History:
2004-11-19
修改了析构函数,解决了索引没有释放的bug
**/(/*** dynamic array template class* 1. Support characters Index* 2. Add convenience to delete arbitrary* a final update 2004-8-9 yzh** 1. Character Index optimized mode of operation, the use of storage arrays** 2 . a rewrite of the underlying data storage, storage continuity conversion of non-continuous, and thus good*** effective support to the "quote", and let the data changed to delete the more rapid* usage such as :* YCArraylt; int, intgt; test* test. Add ( "Number2", 4)* test.Add ( "Number1", 2)* printf ( "% d% d", test [ "Number1"] test [ "Number2"])* Display :** 2 4************* History : 2004-11-19 revised the destructors, the index did not address the release of bug** /)
- 2005-09-06 13:03:51下载
- 积分:1
-
3D-Model-Display
在XNA4.0中,3D游戏的制作,需要很多三维模型的导入,本代码显示fbx,x等三维模型的导入,并做了相应的动画。(XNA4.0 in the production of 3D games, you need a lot of three-dimensional model of the import of this code shows the 3D model import fbx, x, and the corresponding animation.)
- 2012-06-02 11:32:23下载
- 积分:1
-
driver
VC6.0开发,3年前开发的PCI9052接口及测试程序,一定要先安装DriverStudio,如果有相应的接口卡就最好,如果没有也可以看看程序作为参考。(VC6.0 development, three years ago, the development of PCI9052 interface and test procedures, we must first install the DriverStudio, if there is a corresponding interface card on the best, if not also look at programs as a reference.)
- 2010-03-11 09:28:46下载
- 积分:1
-
GifCodec
参考网上的资料写的gif编解码。
编码用gdi解析常用图片格式,然后组装成gif
解码吧gif的每一帧转换成dib
gif文件格式网上有很多介绍
gif用的变长lzw压缩算法:
没弄懂原理,只知道过程。压缩取一个字符作为后缀,看看字符串是否存在。存在,用对应的编码作为前缀继续取;不存在把字符串添加到字典,前缀添加到输出流,后缀作为前缀继续取。解压取一个编码看看字典中是否存在。存在用对应的字符串的第一个字符作为后缀,看看当前字符串是否存在,不存在添加到字典中,后缀作为前缀,前缀对应的字符串添加到输出流,继续取;编码不存在,前缀对应的字符串的第一个字符作为后缀(这时当前字符串肯定不存在,字典中下一个可用编码肯定等于刚取出的编码),字符串添加到字典中,编码作为前缀,前缀对应的字符串添加到输出流,继续取。
编码流转换成字节流是按位从低到高的,window是小端模式(低字节在低地址),字节内低位在右边。
24位dib转换成8位dib时使用的八叉树算法
图片拉伸时参考的网上的双线性插值算法。
字典满了位数加一,位数是12时不加(Online reference materials written gif codec.
Encoded using gdi resolve common image formats, and then assembled into a gif
Each frame decode it into a gif dib
There are many online gif file format introduced
gif lzw with variable length compression algorithm:
Did not understand the principle, only know the process. Compression takes a character as a suffix, and see if there is a string. Exist as a prefix to continue to take with the corresponding encoding there is no string to add to the dictionary, a prefix added to the output stream, the suffix as a prefix to continue to take. Take a look at extracting coding dictionary exists. Exist with the corresponding first character string as a suffix to see the current string exists, there is no add to the dictionary, the suffix as a prefix, the corresponding string to the output stream, continue to take coding does not exist, prefix corresponding first character string as a suffix (when the current string certainly does not exis)
- 2015-01-17 20:22:25下载
- 积分:1