Janis Streib
19.05.23 b21ff09151ca7e87348f1ea38944decc1f46f5db
commit | author | age
4244cc 1 // struct.h
JS 2
3 #ifndef STRUCT_H_
4 #define STRUCT_H_
5
6 class CG4Trk;
7 class CG4Hub;
8
9
10 typedef struct _REND_STRUCT {
11   int numSrc;
12   int numHub;
13   int hubreadmap;
14   int tot_hubs_on_system;
15   float (*srcList)[6];
16   CG4Hub* hubList;
17   float viewTrans[3];
18   CQuaternion viewRot;
19   CG4Trk* pTrk;
20   float srcScale;
21   float senScale;
22   int counter;
23 }REND_STRUCT;
24
25
26 #endif