Rev 1880 | Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1852 | killagreg | 1 | #ifndef _VECTOR_H |
2 | #define _VECTOR_H |
||
3 | |||
4 | typedef struct |
||
5 | { |
||
6 | int32_t x; |
||
7 | int32_t y; |
||
8 | int32_t z; |
||
9 | } __attribute__((packed)) vector32_t; |
||
10 | |||
11 | typedef struct |
||
12 | { |
||
13 | int16_t x; |
||
14 | int16_t y; |
||
15 | int16_t z; |
||
16 | } __attribute__((packed)) vector16_t; |
||
17 | |||
18 | |||
19 | #endif //_VECTOR_H |