Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 204 | chris | 1 | #ifndef __object_h__ |
| 2 | #define __object_h__ |
||
| 3 | |||
| 4 | |||
| 5 | #define OBJECT_MAX 30 |
||
| 6 | |||
| 7 | #ifdef __cplusplus |
||
| 8 | extern "C" { |
||
| 9 | #endif |
||
| 10 | |||
| 11 | typedef struct { |
||
| 12 | char name[256]; |
||
| 13 | int id; |
||
| 14 | int visible; |
||
| 15 | double marker_coord[4][2]; |
||
| 16 | double trans[3][4]; |
||
| 17 | int vrml_id; |
||
| 18 | int vrml_id_orig; |
||
| 19 | double marker_width; |
||
| 20 | double marker_center[2]; |
||
| 21 | } ObjectData_T; |
||
| 22 | |||
| 23 | ObjectData_T *read_VRMLdata (char *name, int *objectnum); |
||
| 24 | |||
| 25 | #ifdef __cplusplus |
||
| 26 | } |
||
| 27 | #endif |
||
| 28 | |||
| 29 | #endif // __object_h__ |