1 Star 0 Fork 0

codeblack/ParticleEngine

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
ParticleType.h 660 Bytes
一键复制 编辑 原始数据 按行查看 历史
synFireCloud 提交于 2015-07-21 15:18 . 提交版本1.0
#ifndef FCG_PARTICLE_TYPE_H
#define FCG_PARTICLE_TYPE_H
#include <GL/glut.h>
#include <GL/gl.h>
namespace FireCloud{
struct GLcolor{
GLfloat r;
GLfloat g;
GLfloat b;
GLfloat a;
};
struct GLvector{
GLfloat x;
GLfloat y;
GLfloat z;
};
struct ParticleEmitterData{
GLuint life_max;
GLuint life_min;
GLuint particle_max_sum;
GLfloat emit_speed;
GLcolor start_color_max;
GLcolor start_color_min;
GLcolor end_color_max;
GLcolor end_color_min;
GLfloat start_speed_max;
GLfloat start_speed_min;
GLfloat start_size_max;
GLfloat start_size_min;
GLfloat end_size_max;
GLfloat end_size_min;
GLfloat disperse_max;
GLvector acceleration;
};
}
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/blackland/ParticleEngine.git
git@gitee.com:blackland/ParticleEngine.git
blackland
ParticleEngine
ParticleEngine
master

搜索帮助