Skip to content

Commit

Permalink
Remove duplicate nodes from all interior rings in a polygon
Browse files Browse the repository at this point in the history
  • Loading branch information
gacarrillor committed Mar 10, 2020
1 parent 36e773f commit 329c552
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/geometry/qgscurvepolygon.cpp
Expand Up @@ -601,7 +601,7 @@ bool QgsCurvePolygon::removeDuplicateNodes( double epsilon, bool useZValues )
}
for ( QgsCurve *ring : qgis::as_const( mInteriorRings ) )
{
result = result || cleanRing( ring );
if ( cleanRing( ring ) ) result = true;
}
return result;
}
Expand Down

0 comments on commit 329c552

Please sign in to comment.