Skip to content

Commit

Permalink
Fix "Densify by interval" alg
Browse files Browse the repository at this point in the history
Fixes #33470
  • Loading branch information
agiudiceandrea authored and nyalldawson committed Feb 2, 2020
1 parent 73f707e commit efe5975
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -96,7 +96,7 @@ QgsFeatureList QgsDensifyGeometriesByIntervalAlgorithm::processFeature( const Qg
interval = mIntervalProperty.valueAsDouble( context.expressionContext(), interval );

if ( feature.hasGeometry() )
modifiedFeature.setGeometry( feature.geometry().densifyByDistance( mInterval ) );
modifiedFeature.setGeometry( feature.geometry().densifyByDistance( interval ) );

return QgsFeatureList() << modifiedFeature;
}
Expand Down

0 comments on commit efe5975

Please sign in to comment.