22 lines
466 B
C
22 lines
466 B
C
#ifndef _HEXAGRAM_MFD_H
|
|
#define _HEXAGRAM_MFD_H
|
|
|
|
#include <cairo.h>
|
|
|
|
typedef struct _hexagram_mfd {
|
|
double x, y;
|
|
|
|
double width,
|
|
height;
|
|
} hexagram_mfd;
|
|
|
|
void hexagram_mfd_init(hexagram_mfd *mfd,
|
|
double x,
|
|
double y,
|
|
double width,
|
|
double height);
|
|
|
|
void hexagram_mfd_draw(hexagram_mfd *mfd,
|
|
cairo_t *cr);
|
|
|
|
#endif /* _HEXAGRAM_MFD_H */
|