Skip to content

Commit

Permalink
Merge pull request #3372 from anitagraser/patch-1
Browse files Browse the repository at this point in the history
[processing] fixed failure to insert only one point in Densify geometries alg
  • Loading branch information
alexbruy authored Aug 12, 2016
2 parents 4ae7b6f + 754ccef commit 915afcf
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions python/plugins/processing/algs/qgis/DensifyGeometries.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,7 @@ def densifyGeometry(self, geometry, pointsNumber, isPolygon):

def densify(self, polyline, pointsNumber):
output = []
if pointsNumber != 1:
multiplier = 1.0 / float(pointsNumber + 1)
else:
multiplier = 1
multiplier = 1.0 / float(pointsNumber + 1)
for i in xrange(len(polyline) - 1):
p1 = polyline[i]
p2 = polyline[i + 1]
Expand Down

0 comments on commit 915afcf

Please sign in to comment.