QGIS API Documentation  3.37.0-Master (a5b4d9743e8)
qgssimplifymethod.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgssimplifymethod.h
3  ---------------------
4  begin : December 2013
5  copyright : (C) 2013 by Matthias Kuhn / Alvaro Huarte
6  email :
7  ***************************************************************************
8  * *
9  * This program is free software; you can redistribute it and/or modify *
10  * it under the terms of the GNU General Public License as published by *
11  * the Free Software Foundation; either version 2 of the License, or *
12  * (at your option) any later version. *
13  * *
14  ***************************************************************************/
15 
16 #ifndef QGSSIMPLIFYMETHOD_H
17 #define QGSSIMPLIFYMETHOD_H
18 
19 #include "qgis_core.h"
20 
22 
27 class CORE_EXPORT QgsSimplifyMethod
28 {
29  public:
31  {
34  PreserveTopology
35  };
36 
38  QgsSimplifyMethod() = default;
39 
41  void setMethodType( MethodType methodType );
43  inline MethodType methodType() const { return mMethodType; }
44 
46  void setTolerance( double tolerance );
48  inline double tolerance() const { return mTolerance; }
49 
51  void setThreshold( float threshold ) { mThreshold = threshold; }
53  inline float threshold() const { return mThreshold; }
54 
56  void setForceLocalOptimization( bool localOptimization );
58  inline bool forceLocalOptimization() const { return mForceLocalOptimization; }
59 
61  static QgsAbstractGeometrySimplifier *createGeometrySimplifier( const QgsSimplifyMethod &simplifyMethod );
62 
64  bool operator==( const QgsSimplifyMethod &v ) const;
65 
67  bool operator!=( const QgsSimplifyMethod &v ) const;
68 
69  protected:
73  double mTolerance = 1;
75  float mThreshold = 1;
77  bool mForceLocalOptimization = true;
78 };
79 
80 #endif // QGSSIMPLIFYMETHOD_H
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.
bool operator==(const QgsFeatureIterator &fi1, const QgsFeatureIterator &fi2)
bool operator!=(const QgsFeatureIterator &fi1, const QgsFeatureIterator &fi2)