From afa6cfe3192f3d81b134576b795b461e648e0ce6 Mon Sep 17 00:00:00 2001 From: Sandy Noble Date: Wed, 12 Mar 2014 08:36:45 +0000 Subject: [PATCH] Well, this is the real fix, duh. --- polargraphcontroller.pde | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polargraphcontroller.pde b/polargraphcontroller.pde index 8981fb3..9990cc5 100644 --- a/polargraphcontroller.pde +++ b/polargraphcontroller.pde @@ -1202,7 +1202,7 @@ float getGridSize() void setGridSize(float s) { // round it down - this.gridSize = s;//(int)s; + this.gridSize = (int)s; } void setSampleArea(float v)