Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
allowing negative values in fixed buffer distance
  • Loading branch information
mach0 committed Aug 21, 2013
1 parent 5c6903e commit 363b5de
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -56,7 +56,7 @@ def defineCharacteristics(self):
self.name = "Fixed distance buffer"
self.group = "Vector geometry tools"
self.addParameter(ParameterVector(self.INPUT, "Input layer", [ParameterVector.VECTOR_TYPE_ANY]))
self.addParameter(ParameterNumber(self.DISTANCE, "Distance", 0.0, default=10.0))
self.addParameter(ParameterNumber(self.DISTANCE, "Distance", default=10.0))
self.addParameter(ParameterNumber(self.SEGMENTS, "Segments", 1, default=5))
self.addParameter(ParameterBoolean(self.DISSOLVE, "Dissolve result", False))

Expand Down

0 comments on commit 363b5de

Please sign in to comment.