QGIS/python/core/auto_generated/qgsmaptopixelgeometrysimplifier.sip.in
Juergen E. Fischer c6008b7ee1 fix MSVC build: reverts fee62e4, dff05dd and e3a77b9484c effectivly
reverting 3fb0f66 (followup #45348)

Using --no-public-is-protected (default on Windows) also works on Linux
and fixes #45331 too
2021-10-21 23:03:48 +02:00

109 lines
3.5 KiB
Plaintext

/************************************************************************
* This file has been generated automatically from *
* *
* src/core/qgsmaptopixelgeometrysimplifier.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/
class QgsMapToPixelSimplifier : QgsAbstractGeometrySimplifier
{
%Docstring(signature="appended")
Implementation of GeometrySimplifier using the "MapToPixel" algorithm
Simplifies a geometry removing points within of the maximum distance difference that defines the MapToPixel info of a RenderContext request.
This class enables simplify the geometries to be rendered in a MapCanvas target to speed up the vector drawing.
%End
%TypeHeaderCode
#include "qgsmaptopixelgeometrysimplifier.h"
%End
public:
enum SimplifyAlgorithm
{
Distance,
SnapToGrid,
Visvalingam,
SnappedToGridGlobal,
};
QgsMapToPixelSimplifier( int simplifyFlags, double tolerance, SimplifyAlgorithm simplifyAlgorithm = Distance );
%Docstring
Constructor
%End
enum SimplifyFlag
{
NoFlags,
SimplifyGeometry,
SimplifyEnvelope,
};
protected:
static float calculateLengthSquared2D( double x1, double y1, double x2, double y2 );
%Docstring
Returns the squared 2D-distance of the vector defined by the two points specified
%End
static bool equalSnapToGrid( double x1, double y1, double x2, double y2, double gridOriginX, double gridOriginY, float gridInverseSizeXY );
%Docstring
Returns whether the points belong to the same grid
%End
public:
int simplifyFlags() const;
%Docstring
Gets the simplification hints of the vector layer managed
%End
void setSimplifyFlags( int simplifyFlags );
%Docstring
Sets the simplification hints of the vector layer managed
%End
SimplifyAlgorithm simplifyAlgorithm() const;
%Docstring
Gets the local simplification algorithm of the vector layer managed
%End
void setSimplifyAlgorithm( SimplifyAlgorithm simplifyAlgorithm );
%Docstring
Sets the local simplification algorithm of the vector layer managed
%End
virtual QgsGeometry simplify( const QgsGeometry &geometry ) const;
virtual QgsAbstractGeometry *simplify( const QgsAbstractGeometry *geometry ) const /Factory/;
void setTolerance( double value );
%Docstring
Sets the tolerance of the vector layer managed
%End
public:
static bool isGeneralizableByMapBoundingBox( const QgsRectangle &envelope, double map2pixelTol );
%Docstring
Returns whether the envelope can be replaced by its BBOX when is applied the specified map2pixel context
%End
bool isGeneralizableByMapBoundingBox( const QgsRectangle &envelope ) const;
%Docstring
Returns whether the envelope can be replaced by its BBOX when is applied the specified map2pixel context
%End
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/qgsmaptopixelgeometrysimplifier.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/