rotagon/polygons.h
Frank Villaro-Dixon 5759435515 patterns and shape
2015-01-01 13:12:40 +01:00

24 lines
452 B
C

/*
** polygons.h - <+DESC+>
**
** 2014 - Frank Villaro-Dixon <Frank@Villaro-Dixon.eu>
*/
#ifndef POLYGONS_H
#define POLYGONS_H
void
draw_polygon(struct s_game *g);
void
draw_hexagon_side(struct s_game *g, int faceno, int dist, int thick, int col);
void
draw_square_side(struct s_game *g, int faceno, int dist, int thick, int col);
void
draw_triangle_side(struct s_game *g, int faceno, int dist, int thick, int col);
#endif /* ndef POLYGONS_H */