1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/qgssimplifymethod.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
class QgsSimplifyMethod
{
%Docstring(signature="appended")
This class contains information about how to simplify geometries fetched
from a :py:class:`QgsFeatureIterator`
%End
%TypeHeaderCode
#include "qgssimplifymethod.h"
%End
public:
enum MethodType /BaseType=IntEnum/
{
NoSimplification,
OptimizeForRendering,
PreserveTopology
};
QgsSimplifyMethod();
%Docstring
construct a default method
%End
void setMethodType( MethodType methodType );
%Docstring
Sets the simplification type
%End
MethodType methodType() const;
%Docstring
Gets the simplification type
%End
void setTolerance( double tolerance );
%Docstring
Sets the tolerance of simplification in map units. Represents the
maximum distance in map units between two coordinates which can be
considered equal.
%End
double tolerance() const;
%Docstring
Gets the tolerance of simplification in map units. Represents the
maximum distance in map units between two coordinates which can be
considered equal.
%End
void setThreshold( float threshold );
%Docstring
Sets the simplification threshold in pixels. Represents the maximum
distance in pixels between two coordinates which can be considered
equal.
%End
float threshold() const;
%Docstring
Gets the simplification threshold in pixels. Represents the maximum
distance in pixels between two coordinates which can be considered
equal.
%End
void setForceLocalOptimization( bool localOptimization );
%Docstring
Sets whether the simplification executes after fetch the geometries from
provider, otherwise it executes, when supported, in provider before
fetch the geometries
%End
bool forceLocalOptimization() const;
%Docstring
Gets whether the simplification executes after fetch the geometries from
provider, otherwise it executes, when supported, in provider before
fetch the geometries
%End
static QgsAbstractGeometrySimplifier *createGeometrySimplifier( const QgsSimplifyMethod &simplifyMethod );
%Docstring
Creates a geometry simplifier according to specified method
%End
bool operator==( const QgsSimplifyMethod &v ) const;
bool operator!=( const QgsSimplifyMethod &v ) const;
protected:
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/qgssimplifymethod.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
|