登录
首页 » Visual C++ » myPlaneDisplay

myPlaneDisplay

于 2021-04-05 发布 文件大小:364KB
0 210
下载积分: 1 下载次数: 80

代码说明:

  VC++编写的飞机仪表显示,可以直接修改使用,显示为一个可以飞行的3D飞机(VC++ Prepared aircraft instrument display, you can directly modify the use, appears as a 3D plane can fly)

文件列表:

PlaneDisplay
............\AEREO.MS3D,364724,2002-12-24
............\FIGHTERTEST.APS,28668,2002-12-24
............\FIGHTERTEST.CLW,2359,2002-12-24
............\FIGHTERTEST.CPP,4299,2002-12-24
............\FIGHTERTEST.DSP,5086,2002-12-24
............\FIGHTERTEST.DSW,547,2002-12-24
............\FIGHTERTEST.EXE,163904,2002-12-24
............\FIGHTERTEST.H,1408,2002-12-24
............\FIGHTERTEST.NCB,132096,2002-12-24
............\FIGHTERTEST.OPT,50688,2002-12-24
............\FIGHTERTEST.PLG,1285,2002-12-24
............\FIGHTERTEST.RC,10610,2002-12-24
............\FIGHTERTESTDOC.CPP,1842,2002-12-24
............\FIGHTERTESTDOC.H,1527,2002-12-24
............\FIGHTERTESTVIEW.CPP,19541,2002-12-24
............\FIGHTERTESTVIEW.H,4304,2002-12-24

............\MAINFRM.CPP,2512,2002-12-24
............\MAINFRM.H,1581,2002-12-24
............\MILKSHAPEMODEL.CPP,5773,2002-12-24
............\MILKSHAPEMODEL.H,745,2002-12-24
............\MODEL.CPP,3122,2002-12-24
............\MODEL.H,1741,2002-12-24

............\RES

............\...\FIGHTERTEST.RC2,403,2002-12-24


............\RESOURCE.H,499,2002-12-24

............\STDAFX.CPP,213,2002-12-24
............\STDAFX.H,1327,2002-12-24
............\TEXTURE.CPP,4982,2002-12-24
............\TEXTURE.H,618,2002-12-24

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • PMA
    PMA规约模拟测试软件。适合初学者使用,包含几个常用规约(PMA Statute of the simulation test software)
    2013-09-17 12:23:28下载
    积分:1
  • Active-piece-of
    VC++实现滑动块 按键盘A键滑块左移,D键滑块右移(VC++ realize sliding blocks. According to A slider keyboard key moves left, D key slider move to the right. )
    2012-07-04 01:50:57下载
    积分:1
  • trc_com_log
    记录串口收到的数据并存到文件,主要用于不容易发现的程序BUG调试(record serial data received by the coexistence of the document, mainly for not easy to find the debugging process BUG)
    2007-07-03 11:59:12下载
    积分:1
  • SCOMMV23
    一个功能比较全面的串口调试工具。你值得拥有。(A more comprehensive functional serial debugging tools. You deserve. )
    2013-07-19 16:10:07下载
    积分:1
  • Print1ToMaxOfNDigits
    输入一个十进制数字,打印出其二进制所包含的1的个数,空间复杂度很小(Enter a decimal number, print out its binary contains a number, a very small space complexity)
    2013-09-04 19:15:43下载
    积分:1
  • 3d
    说明:  基于Direct3d的图形学入门代码,9个星球的自转公转,矩阵变换的运用基础(The use of graphics-based foundation Direct3d entry code, nine planets revolve rotation matrix transformation)
    2014-12-24 20:17:48下载
    积分:1
  • AccessControl
    visual C++ 6.0关于access数据库编程,里面的类可以直接拿来用,非常方便
    2016-05-09 16:18:52下载
    积分:1
  • polyfonts
    this is a source code to help you to construct a poly font on you program. that is good for 3d paint.
    2009-10-07 21:41:02下载
    积分: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
  • 32lu-led
    水滴实验(水滴变大下落,带拖尾效果) 水滴实验(水滴变大下落,带拖尾效果) (Drop experiment (larger droplets fall, with tail effect) drop test (larger droplets fall, with tail effect))
    2020-09-23 13:57:51下载
    积分:1
  • 696518资源总数
  • 105549会员总数
  • 12今日下载