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
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/analysis/georeferencing/qgsgcpgeometrytransformer.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
class QgsGcpGeometryTransformer : QgsAbstractGeometryTransformer
{
%Docstring(signature="appended")
A geometry transformer which uses an underlying Ground Control Points
(GCP) based transformation to modify geometries.
.. versionadded:: 3.18
%End
%TypeHeaderCode
#include "qgsgcpgeometrytransformer.h"
%End
public:
QgsGcpGeometryTransformer( QgsGcpTransformerInterface *gcpTransformer /Transfer/ );
%Docstring
Constructor for QgsGcpGeometryTransformer, which uses the specified
``gcpTransformer`` to modify geometries.
Ownership of ``gcpTransformer`` is transferred to the geometry
transformer.
%End
QgsGcpGeometryTransformer( QgsGcpTransformerInterface::TransformMethod method, const QVector<QgsPointXY> &sourceCoordinates, const QVector<QgsPointXY> &destinationCoordinates );
%Docstring
Constructor for QgsGcpGeometryTransformer, which uses the specified
transform ``method`` and list of source and destination coordinates to
transform geometries.
%End
~QgsGcpGeometryTransformer();
virtual bool transformPoint( double &x /In,Out/, double &y /In,Out/, double &z /In,Out/, double &m /In,Out/ );
QgsGeometry transform( const QgsGeometry &geometry, bool &ok /Out/, QgsFeedback *feedback = 0 );
%Docstring
Transforms the specified input ``geometry`` using the GCP based
transform.
:param geometry: Input geometry to transform
:param feedback: This optional argument can be used to cancel the
transformation before it completes. If this is done,
the geometry will be left in a semi-transformed state.
:return: - transformed geometry
- ok: ``True`` if geometry was successfully transformed, or
``False`` if an error occurred
%End
QgsGcpTransformerInterface *gcpTransformer() const;
%Docstring
Returns the underlying GCP transformer used to transform geometries.
.. seealso:: :py:func:`setGcpTransformer`
%End
void setGcpTransformer( QgsGcpTransformerInterface *transformer /Transfer/ );
%Docstring
Sets the underlying GCP ``transformer`` used to transform geometries.
Ownership is transferred to this object.
.. seealso:: :py:func:`gcpTransformer`
%End
private:
QgsGcpGeometryTransformer( const QgsGcpGeometryTransformer &other );
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/analysis/georeferencing/qgsgcpgeometrytransformer.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
|