15 lines
297 B
C
15 lines
297 B
C
#ifndef _HEXAGRAM_TYPES_H
|
|
#define _HEXAGRAM_TYPES_H
|
|
|
|
typedef struct _hexagram_coord {
|
|
float x, y, z;
|
|
} hexagram_coord;
|
|
|
|
typedef struct _hexagram_corner {
|
|
float front_left,
|
|
front_right,
|
|
rear_left,
|
|
rear_right;
|
|
} hexagram_corner;
|
|
|
|
#endif /* _HEXAGRAM_TYPES_H */
|