Skip to content

Commit 81a9db9

Browse files
committedJun 15, 2020
[sipify] Fix creation of cross references
1 parent e653711 commit 81a9db9

File tree

376 files changed

+1809
-1872
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

376 files changed

+1809
-1872
lines changed
 

‎python/3d/auto_generated/qgs3dmapsettings.sip.in

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ Copy constructor
4242

4343
void readXml( const QDomElement &elem, const QgsReadWriteContext &context );
4444
%Docstring
45-
Reads configuration from a DOM element previously written by writeXml()
45+
Reads configuration from a DOM element previously written by :py:func:`~Qgs3DMapSettings.writeXml`
4646
%End
4747
QDomElement writeXml( QDomDocument &doc, const QgsReadWriteContext &context ) const;
4848
%Docstring
49-
Writes configuration to a DOM element, to be used later with readXml()
49+
Writes configuration to a DOM element, to be used later with :py:func:`~Qgs3DMapSettings.readXml`
5050
%End
5151
void resolveReferences( const QgsProject &project );
5252
%Docstring
53-
Resolves references to other objects (map layers) after the call to readXml()
53+
Resolves references to other objects (map layers) after the call to :py:func:`~Qgs3DMapSettings.readXml`
5454
%End
5555

5656
void setOrigin( const QgsVector3D &origin );
@@ -201,7 +201,7 @@ Sets resolution (in pixels) of the texture of a terrain tile
201201
int mapTileResolution() const;
202202
%Docstring
203203
Returns resolution (in pixels) of the texture of a terrain tile. This parameter influences
204-
how many zoom levels for terrain tiles there will be (together with maxTerrainGroundError())
204+
how many zoom levels for terrain tiles there will be (together with :py:func:`~Qgs3DMapSettings.maxTerrainGroundError`)
205205
%End
206206

207207
void setMaxTerrainScreenError( float error );
@@ -230,7 +230,7 @@ Returns maximum ground error of terrain tiles in world units.
230230
float maxTerrainGroundError() const;
231231
%Docstring
232232
Returns maximum ground error of terrain tiles in world units. This parameter influences
233-
how many zoom levels there will be (together with mapTileResolution()).
233+
how many zoom levels there will be (together with :py:func:`~Qgs3DMapSettings.mapTileResolution`).
234234
This value tells that when the given ground error is reached (e.g. 10 meters), it makes no sense
235235
to further split terrain tiles into finer ones because they will not add extra details anymore.
236236
%End
@@ -266,7 +266,7 @@ Sets terrain shading material.
266266
QgsPhongMaterialSettings terrainShadingMaterial() const;
267267
%Docstring
268268
Returns terrain shading material. Diffuse color component is ignored since the diffuse component
269-
is provided by 2D rendered map texture. Only used when isTerrainShadingEnabled() is ``True``.
269+
is provided by 2D rendered map texture. Only used when :py:func:`~Qgs3DMapSettings.isTerrainShadingEnabled` is ``True``.
270270

271271
.. versionadded:: 3.6
272272
%End
@@ -287,7 +287,7 @@ Empty map theme name means that the map theme is not overridden and the current
287287

288288
.. note::
289289

290-
Support for map themes only works if mapThemeCollection() is a valid object (otherwise it is not possible to resolve map themes from names)
290+
Support for map themes only works if :py:func:`~Qgs3DMapSettings.mapThemeCollection` is a valid object (otherwise it is not possible to resolve map themes from names)
291291

292292
.. versionadded:: 3.6
293293
%End
@@ -315,11 +315,11 @@ Returns whether skybox is enabled
315315
%End
316316
QString skyboxFileBase() const;
317317
%Docstring
318-
Returns base part of filenames of skybox (see setSkybox())
318+
Returns base part of filenames of skybox (see :py:func:`~Qgs3DMapSettings.setSkybox`)
319319
%End
320320
QString skyboxFileExtension() const;
321321
%Docstring
322-
Returns extension part of filenames of skybox (see setSkybox())
322+
Returns extension part of filenames of skybox (see :py:func:`~Qgs3DMapSettings.setSkybox`)
323323
%End
324324

325325
void setShowTerrainBoundingBoxes( bool enabled );

‎python/3d/auto_generated/qgsabstractvectorlayer3drenderer.sip.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ of tiles.
3838

3939
void setZoomLevelsCount( int count );
4040
%Docstring
41-
Sets number of zoom levels. See zoomLevelsCount() documentation for more details.
41+
Sets number of zoom levels. See :py:func:`~QgsVectorLayer3DTilingSettings.zoomLevelsCount` documentation for more details.
4242
%End
4343

4444
void setShowBoundingBoxes( bool enabled );

0 commit comments

Comments
 (0)
Please sign in to comment.