protected double gridscale;
@Override
protected void makeOptions(Parameterization config) {
super.makeOptions(config);
IntParameter GRID_PARAM = new IntParameter(GRID_ID, new GreaterEqualConstraint(0), 1);
if(config.grab(GRID_PARAM)) {
gridres = GRID_PARAM.getValue();
}
DoubleParameter GRID_SCALE_PARAM = new DoubleParameter(GRID_SCALE_ID, new GreaterEqualConstraint(0.0), 1.0);
if(config.grab(GRID_SCALE_PARAM)) {
gridscale = GRID_SCALE_PARAM.getValue();