mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-06 00:07:29 -04:00
Sipify
This commit is contained in:
parent
de74ef6d96
commit
5b85cb93c1
@ -59,7 +59,7 @@ Writes configuration to a new DOM element and returns it
|
||||
%End
|
||||
void readXml( const QDomElement &elem );
|
||||
%Docstring
|
||||
Reads configuration from a DOM element previously written using writeXml()
|
||||
Reads configuration from a DOM element previously written using :py:func:`~QgsDirectionalLightSettings.writeXml`
|
||||
%End
|
||||
|
||||
bool operator==( const QgsDirectionalLightSettings &other );
|
||||
|
7
python/core/auto_additions/qgsrasterdataprovider.py
Normal file
7
python/core/auto_additions/qgsrasterdataprovider.py
Normal file
@ -0,0 +1,7 @@
|
||||
# The following has been generated automatically from src/core/raster/qgsrasterdataprovider.h
|
||||
# monkey patching scoped based enum
|
||||
QgsRasterDataProvider.ResamplingMethod.Nearest.__doc__ = "Nearest-neighbour resamplikng"
|
||||
QgsRasterDataProvider.ResamplingMethod.Bilinear.__doc__ = "Bilinear resamplikng"
|
||||
QgsRasterDataProvider.ResamplingMethod.Cubic.__doc__ = "Bicubic resamplikng"
|
||||
QgsRasterDataProvider.ResamplingMethod.__doc__ = 'Resampling method for provider-level resampling.\n\n.. versionadded:: 3.16\n\n' + '* ``Nearest``: ' + QgsRasterDataProvider.ResamplingMethod.Nearest.__doc__ + '\n' + '* ``Bilinear``: ' + QgsRasterDataProvider.ResamplingMethod.Bilinear.__doc__ + '\n' + '* ``Cubic``: ' + QgsRasterDataProvider.ResamplingMethod.Cubic.__doc__
|
||||
# --
|
6
python/core/auto_additions/qgsrasterpipe.py
Normal file
6
python/core/auto_additions/qgsrasterpipe.py
Normal file
@ -0,0 +1,6 @@
|
||||
# The following has been generated automatically from src/core/raster/qgsrasterpipe.h
|
||||
# monkey patching scoped based enum
|
||||
QgsRasterPipe.ResamplingStage.ResampleFilter.__doc__ = ""
|
||||
QgsRasterPipe.ResamplingStage.Provider.__doc__ = ""
|
||||
QgsRasterPipe.ResamplingStage.__doc__ = 'Stage at which resampling occurs.\n\n.. versionadded:: 3.16\n\n' + '* ``ResampleFilter``: ' + QgsRasterPipe.ResamplingStage.ResampleFilter.__doc__ + '\n' + '* ``Provider``: ' + QgsRasterPipe.ResamplingStage.Provider.__doc__
|
||||
# --
|
@ -133,7 +133,7 @@ class CORE_EXPORT QgsRasterPipe
|
||||
|
||||
/**
|
||||
* Stage at which resampling occurs.
|
||||
* @since QGIS 3.16
|
||||
* \since QGIS 3.16
|
||||
*/
|
||||
enum class ResamplingStage
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user