vrecko
virtual reality framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Particle.h
Go to the documentation of this file.
1 #ifndef Particle_h
2 #define Particle_h
3 
4 #include <NxVec3.h>
5 
6 
7 using namespace vrecko;
8 
9 namespace PhysXPlugin
10 {
11  struct Particle
12  {
13  NxVec3 position;
14  NxVec3 velocity;
15  NxReal density;
16  NxReal lifetime;
17  NxU32 id;
19  };
20 }
21 
22 
23 #endif