From 7b2b742be868b4a12d08f6a9f7af3e9f2923016c Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Thu, 24 Feb 2011 19:06:49 +0000 Subject: Another patch from Chris Moore implementing two more grid types, both involving dodecagons. [originally from svn r9109] --- grid.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'grid.h') diff --git a/grid.h b/grid.h index 00bc7b4..9adf3a9 100644 --- a/grid.h +++ b/grid.h @@ -80,8 +80,10 @@ 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); +grid *grid_new_floret(int width, int height); +grid *grid_new_dodecagonal(int width, int height); +grid *grid_new_greatdodecagonal(int width, int height); void grid_free(grid *g); -- cgit v1.1