Debian package version of polhemus's g4display
Janis Streib
30.03.22 48e3f3ec6672ba89420338fdfa76018e46750c9e
commit | author | age
69b66f 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