Well, this is the real fix, duh.

This commit is contained in:
Sandy Noble 2014-03-12 08:36:45 +00:00
parent 7a4dd37fe2
commit afa6cfe319
1 changed files with 1 additions and 1 deletions

View File

@ -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)