登录
首页 » Visual C++ » openGL-rain

openGL-rain

于 2013-05-05 发布 文件大小:2621KB
0 159
下载积分: 1 下载次数: 100

代码说明:

  使用opengl实现的下雨模拟仿真,雨粒子系统,模拟效果真实(opengl rain)

文件列表:

openGL下雨现象模拟
..................\Base Code
..................\.........\camera.cpp,11358,2002-06-19
..................\.........\camera.h,4169,2002-06-19
..................\.........\glext.h,149998,2002-06-19
..................\.........\gl_app.cpp,20435,2002-06-19
..................\.........\gl_app.h,10949,2002-06-19
..................\.........\image.cpp,17732,2002-06-19
..................\.........\image.h,8311,2002-06-19
..................\.........\log.cpp,4673,2002-06-19
..................\.........\log.h,4401,2002-06-19
..................\.........\math_ops.cpp,15431,2002-06-19
..................\.........\math_ops.h,10776,2002-06-19
..................\.........\timer.h,5306,2002-06-19
..................\Data
..................\....\clouds.tga,197493,2002-06-19
..................\....\clouds2.tga,183247,2002-06-19
..................\....\detailMap.tga,787022,2002-06-19
..................\....\flare.tga,3032,2002-06-19
..................\....\height1.RAW,263169,2002-06-19
..................\....\highestTile.tga,197659,2002-06-19
..................\....\HighTile.tga,197659,2002-06-19
..................\....\lowestTile.tga,197659,2002-06-19
..................\....\lowTile.tga,197430,2002-06-19
..................\....\nightsky.tga,207720,2002-06-19
..................\....\reflection_map.tga,166025,2002-06-19
..................\....\skybox_back.tga,173337,2002-06-19
..................\....\skybox_bottom.tga,195567,2002-06-19
..................\....\skybox_front.tga,178963,2002-06-19
..................\....\skybox_left.tga,182295,2002-06-19
..................\....\skybox_right.tga,179635,2002-06-19
..................\....\skybox_top.tga,138808,2002-06-19
..................\....\water1.tga,196203,2002-06-19
..................\....\water2.tga,196388,2002-06-19
..................\demo8_12
..................\........\compiling demo8_12.txt,781,2002-06-19
..................\........\Debug
..................\........\.....\camera.obj,26314,2010-05-27
..................\........\.....\demo8_12.exe,405606,2010-05-27
..................\........\.....\demo8_12.ilk,461876,2010-05-27
..................\........\.....\demo8_12.pdb,672768,2010-05-27
..................\........\.....\geomipmapping.obj,34257,2010-05-27
..................\........\.....\gl_app.obj,44585,2010-05-27
..................\........\.....\image.obj,25104,2010-05-27
..................\........\.....\log.obj,18838,2010-05-27
..................\........\.....\main.obj,101857,2010-05-27
..................\........\.....\math_ops.obj,31164,2010-05-27
..................\........\.....\particle.obj,47914,2010-05-27
..................\........\.....\resource.res,45380,2010-05-27
..................\........\.....\skydome.obj,36810,2010-05-27
..................\........\.....\terrain.obj,43008,2010-05-27
..................\........\.....\vc60.idb,181248,2010-05-27
..................\........\.....\vc60.pdb,94208,2010-05-27
..................\........\.....\water.obj,25843,2010-05-27
..................\........\demo8_12.dep,84,2002-06-19
..................\........\demo8_12.dsp,5665,2002-06-19
..................\........\demo8_12.dsw,541,2002-06-19
..................\........\demo8_12.exe,172032,2002-06-19
..................\........\demo8_12.mak,6601,2002-06-19
..................\........\demo8_12.ncb,287744,2010-05-27
..................\........\demo8_12.opt,53760,2010-05-27
..................\........\demo8_12.plg,2730,2010-05-27
..................\........\geomipmapping.cpp,15831,2002-06-19
..................\........\geomipmapping.h,5910,2002-06-19

..................\........\main.cpp,14515,2002-06-19
..................\........\particle.cpp,9648,2002-06-19
..................\........\particle.h,5208,2002-06-19
..................\........\program log.html,2352,2010-05-27
..................\........\resource.h,1750,2002-06-19
..................\........\resource.rc,2049,2002-06-19
..................\........\skydome.cpp,17117,2002-06-19
..................\........\skydome.h,4009,2002-06-19
..................\........\terrain.cpp,30780,2002-06-19
..................\........\terrain.h,16677,2002-06-19
..................\........\water.cpp,10707,2002-06-19
..................\........\water.h,4137,2002-06-19

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

发表评论

0 个回复

  • VC_programming_classic_DVR_MPEG4_encoding_player_c
    VC编程经典DVR-MPEG4编码播放器代码VC programming classic DVR-MPEG4 encoding player code(VC programming classic DVR-MPEG4 encoding player code)
    2010-08-17 15:26:17下载
    积分:1
  • fenxingtu
    分形图 。计算机图形学实验内容之一。 用C++语言编写的画分形图的源代码。(Fractal images. One of the elements of computer graphics experiments. C++ language with painting the source code of fractal images.)
    2020-07-27 11:08:40下载
    积分:1
  • QRDCMP
    用镜像矩阵求出矩阵的QR分解(正交三角分解),并求解线性方程组,该方法不必选主元,但其计算过程非常稳定。也可用于求矩阵的广义逆和求解线性最小二乘问题。子过程QRDCMP用镜像矩阵求m*n矩阵A的QR分解,A=Q^TR,其中Q是m*m正交矩阵,R为m*n上三角矩阵;子过程QRBKSB用矩阵的QR分解求解线性方程组Ax=b,其中A为n阶非奇异方阵。(Matrix obtained with the mirror matrix QR decomposition (orthogonal triangular decomposition), and solving linear equations, the method does not have to choose the main element, but its calculation process is very stable. Can also be used to find the generalized inverse matrix and solving linear least squares problems. Sub-process of the mirror matrix QRDCMP m* n matrix A QR decomposition, A = Q ^ TR, wherein Q is a m* m orthogonal matrix, R is m* n upper triangular matrix subprocess QRBKSB a QR decomposition to solve the matrix linear equations Ax = b, where A is non-singular square matrix of order n.)
    2013-09-27 11:05:18下载
    积分:1
  • [emuch.net]CompressedPSensingPTheory
    很好的压缩感知的国外的书籍材料,对于我们的学习,尤其初学者很有帮助(ON划词翻译ON实时翻译 Very good material of compressed sensing of foreign books, for our learning, especially for beginners very helpful)
    2014-11-24 09:15:55下载
    积分:1
  • Lyapunov_2_ok
    李亚普诺夫 指数谱 程序 李亚普诺夫 指数谱 程序 李亚普诺夫 指数谱 程序 (Lyapunov exponent spectrum of Lyapunov exponent spectrum program Lyapunov exponent spectrum program program)
    2011-05-03 21:10:11下载
    积分:1
  • ADOctrlAccess
    说明:  ADO控制Access数据库。源来《Visual c++案例开发集锦》(ADO Control Access database. Source to &quot Visual c++ Collection of case development,&quot )
    2010-04-05 01:42:25下载
    积分:1
  • lib
    将字符串转为整形用标准C实现在Brew平台上(string to integer use c on Brew platform)
    2009-11-18 15:33:00下载
    积分:1
  • sim_wave.c
    DFT变换求相位差和振幅大小程序,可以滤除噪声精确求得相位差和幅度值(DFT code)
    2014-09-28 14:00:24下载
    积分:1
  • HPxStandalone
    雷达采集卡应用接口代码,用于控制雷达采集卡采集雷达视频数据。(Radar data capture software code.)
    2015-03-11 21:50:07下载
    积分:1
  • TSMatrix1
    转置,就是一个转置,没有别的东西,还要说点什么!!!!(Transpose thank you very much!!!)
    2010-05-11 22:52:00下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载