Sets the maximum allowable the maximum tolerable increase in error when a feature is added @param maxIncrease the maximum allowable the maximum tolerable increase in error when a feature is added
(double maxIncrease)
| 337 | * in error when a feature is added |
| 338 | */ |
| 339 | public void setMaxIncrease(double maxIncrease) |
| 340 | { |
| 341 | if (maxIncrease < 0) |
| 342 | throw new IllegalArgumentException("Decarese must be a positive value, not " + maxIncrease); |
| 343 | this.maxIncrease = maxIncrease; |
| 344 | } |
| 345 | |
| 346 | /** |
| 347 | * |