16 #ifndef QGSSIMPLIFYMETHOD_H
17 #define QGSSIMPLIFYMETHOD_H
19 #include "qgis_core.h"
47 void setTolerance(
double tolerance );
49 inline double tolerance()
const {
return mTolerance; }
54 inline float threshold()
const {
return mThreshold; }
57 void setForceLocalOptimization(
bool localOptimization );
68 double mTolerance = 1;
72 bool mForceLocalOptimization =
true;
Abstract base class for simplify geometries using a specific algorithm.
This class contains information about how to simplify geometries fetched from a QgsFeatureIterator.
QgsSimplifyMethod()=default
construct a default method
float threshold() const
Gets the simplification threshold in pixels. Represents the maximum distance in pixels between two co...
void setThreshold(float threshold)
Sets the simplification threshold in pixels. Represents the maximum distance in pixels between two co...
double tolerance() const
Gets the tolerance of simplification in map units. Represents the maximum distance in map units betwe...
bool forceLocalOptimization() const
Gets whether the simplification executes after fetch the geometries from provider,...
MethodType methodType() const
Gets the simplification type.
@ OptimizeForRendering
Simplify using the map2pixel data to optimize the rendering of geometries.
@ NoSimplification
No simplification is applied.