Debian package version of polhemus's g4display
Janis Streib
30.03.22 69b66ffc68dca173cf5f014f797e02ca69c7db83
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
// struct.h
 
#ifndef STRUCT_H_
#define STRUCT_H_
 
class CG4Trk;
class CG4Hub;
 
 
typedef struct _REND_STRUCT {
  int numSrc;
  int numHub;
  int hubreadmap;
  int tot_hubs_on_system;
  float (*srcList)[6];
  CG4Hub* hubList;
  float viewTrans[3];
  CQuaternion viewRot;
  CG4Trk* pTrk;
  float srcScale;
  float senScale;
  int counter;
}REND_STRUCT;
 
 
#endif