We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d49422 commit 3853fc2Copy full SHA for 3853fc2
python/core/symbology-ng/qgsinvertedpolygonrenderer.sip
@@ -67,4 +67,14 @@ class QgsInvertedPolygonRenderer : public QgsFeatureRendererV2
67
/** @returns the current embedded renderer
68
*/
69
const QgsFeatureRendererV2* embeddedRenderer() const;
70
+ /** @returns true if the geometries are to be preprocessed (merged with an union) before rendering.*/
71
+
72
+ bool preprocessingEnabled() const;
73
+ /**
74
+ @param enabled enables or disables the preprocessing.
75
+ When enabled, geometries will be merged with an union before being rendered.
76
+ It allows to fix some rendering artefacts (when rendering overlapping polygons for instance).
77
+ This will involve some CPU-demanding computations and is thus disabled by default.
78
+ */
79
+ void setPreprocessingEnabled( bool enabled );
80
};
0 commit comments