Patch from Chris Moore to implement an extra grid type, the 'floret'

pentagonal tiling.

[originally from svn r9107]
This commit is contained in:
Simon Tatham
2011-02-23 20:05:42 +00:00
parent 1a628aebd8
commit 53f6e4c6cb
3 changed files with 94 additions and 1 deletions

1
grid.h
View File

@ -85,6 +85,7 @@ grid *grid_new_snubsquare(int width, int height);
grid *grid_new_cairo(int width, int height);
grid *grid_new_greathexagonal(int width, int height);
grid *grid_new_octagonal(int width, int height);
grid *grid_new_floret(int width, int height);
grid *grid_new_kites(int width, int height);
void grid_free(grid *g);