diff options
| author | Simon Tatham <anakin@pobox.com> | 2011-02-23 20:05:42 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2011-02-23 20:05:42 +0000 |
| commit | 53f6e4c6cb0b342f37e75c2686c1b542212c5f3e (patch) | |
| tree | 10f6072309c91afe6fd423d1a7b349fbdf5aa42b /grid.h | |
| parent | 1a628aebd8893001bc3a2e9dbc3e2dc7432b08e4 (diff) | |
| download | puzzles-53f6e4c6cb0b342f37e75c2686c1b542212c5f3e.zip puzzles-53f6e4c6cb0b342f37e75c2686c1b542212c5f3e.tar.gz puzzles-53f6e4c6cb0b342f37e75c2686c1b542212c5f3e.tar.bz2 puzzles-53f6e4c6cb0b342f37e75c2686c1b542212c5f3e.tar.xz | |
Patch from Chris Moore to implement an extra grid type, the 'floret'
pentagonal tiling.
[originally from svn r9107]
Diffstat (limited to 'grid.h')
| -rw-r--r-- | grid.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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); |