summaryrefslogtreecommitdiff
path: root/axis.hs
diff options
context:
space:
mode:
authorAndrew Cady <d@jerkface.net>2014-01-17 09:43:45 -0500
committerAndrew Cady <d@jerkface.net>2014-01-17 09:43:45 -0500
commit3b79da604809c2bce376938bb52d9e68af2438b5 (patch)
tree7611ea9beb64a9ed9d7541a6631dafe94de4871f /axis.hs
parentcd8e459100ad72ed9922768c09597245f379368c (diff)
use smaller circles in circle mode
Diffstat (limited to 'axis.hs')
-rw-r--r--axis.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/axis.hs b/axis.hs
index 05e9060..17e7ec9 100644
--- a/axis.hs
+++ b/axis.hs
@@ -39,7 +39,7 @@ _USE_HEXAGONS = True
39_drawHexircle f v x y s c = 39_drawHexircle f v x y s c =
40 if _USE_HEXAGONS 40 if _USE_HEXAGONS
41 then _drawHexagonSDL f v x y s c 41 then _drawHexagonSDL f v x y s c
42 else (if f then SDL.Primitive.filledCircle else SDL.Primitive.circle) v x y (s * 7 `div` 8) c 42 else (if f then SDL.Primitive.filledCircle else SDL.Primitive.circle) v x y (s * 7 `div` 9) c
43 43
44drawHexircle = _drawHexircle False 44drawHexircle = _drawHexircle False
45drawFilledHexircle = _drawHexircle True 45drawFilledHexircle = _drawHexircle True