23 lines
452 B
C
23 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 */
|
|
|