Skip to content

Commit

Permalink
[processing] port voronoi polygons algorithm to C++
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy authored and wonder-sk committed Oct 9, 2023
1 parent 9c12012 commit d824314
Show file tree
Hide file tree
Showing 20 changed files with 1,492 additions and 1,371 deletions.
3 changes: 0 additions & 3 deletions python/plugins/processing/algs/help/qgis.yaml
Expand Up @@ -258,6 +258,3 @@ qgis:vectorlayerhistogram: >

qgis:vectorlayerscatterplot: >
This algorithm creates a simple X - Y scatter plot for a vector layer.

qgis:voronoipolygons: >
This algorithm takes a points layer and generates a polygon layer containing the voronoi polygons corresponding to those input points.
2 changes: 0 additions & 2 deletions python/plugins/processing/algs/qgis/QgisAlgorithmProvider.py
Expand Up @@ -80,7 +80,6 @@
from .VectorLayerHistogram import VectorLayerHistogram
from .VectorLayerScatterplot import VectorLayerScatterplot
from .VectorLayerScatterplot3D import VectorLayerScatterplot3D
from .VoronoiPolygons import VoronoiPolygons


class QgisAlgorithmProvider(QgsProcessingProvider):
Expand Down Expand Up @@ -144,7 +143,6 @@ def getAlgs(self):
VectorLayerHistogram(),
VectorLayerScatterplot(),
VectorLayerScatterplot3D(),
VoronoiPolygons(),
]

return algs
Expand Down

0 comments on commit d824314

Please sign in to comment.