forked from beltoforion/Galaxy-Renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTypes.h
48 lines (38 loc) · 861 Bytes
/
Types.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#ifndef _TYPES_H
#define _TYPES_H
#pragma pack(push, 1)
//---------------------------------------------------------------------
struct PODState
{
double x;
double y;
double vx;
double vy;
};
//---------------------------------------------------------------------
struct PODAuxState
{
double mass;
};
//---------------------------------------------------------------------
struct PODDeriv
{
double vx;
double vy;
double ax;
double ay;
};
#pragma pack(pop)
//---------------------------------------------------------------------
struct ParticleData
{
ParticleData();
ParticleData(PODState *m_pState, PODAuxState *m_pAuxState);
ParticleData(const ParticleData &ref);
ParticleData& operator=(const ParticleData &ref);
void Reset();
bool IsNull() const;
PODState *m_pState;
PODAuxState *m_pAuxState;
};
#endif // _TYPES_H