From 53f6e4c6cb0b342f37e75c2686c1b542212c5f3e Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Wed, 23 Feb 2011 20:05:42 +0000 Subject: Patch from Chris Moore to implement an extra grid type, the 'floret' pentagonal tiling. [originally from svn r9107] --- grid.h | 1 + 1 file changed, 1 insertion(+) (limited to 'grid.h') diff --git a/grid.h b/grid.h index 217f6da..2fbe269 100644 --- a/grid.h +++ b/grid.h @@ -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); -- cgit v1.1