mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-15 00:02:52 -04:00
fix broken see also
This commit is contained in:
parent
16b4faa0e5
commit
376671215a
@ -52,9 +52,7 @@ Constructor for QgsPointCloud3DSymbol
|
|||||||
|
|
||||||
QgsPointCloud3DSymbol::RenderingStyle renderingStyle() const;
|
QgsPointCloud3DSymbol::RenderingStyle renderingStyle() const;
|
||||||
%Docstring
|
%Docstring
|
||||||
Returns the rendering style
|
Returns the rendering style used to render the point cloud
|
||||||
|
|
||||||
.. seealso:: :py:func:`setRenderingStyle`
|
|
||||||
%End
|
%End
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
@ -195,14 +193,14 @@ Sets the point size
|
|||||||
|
|
||||||
QgsColorRampPointCloud3DSymbol::RenderingParameter renderingParameter() const;
|
QgsColorRampPointCloud3DSymbol::RenderingParameter renderingParameter() const;
|
||||||
%Docstring
|
%Docstring
|
||||||
Returns the parameter used to select the color of the point cloud when using color ramp coloring
|
Returns the parameter used to select the color of the point cloud
|
||||||
|
|
||||||
.. seealso:: :py:func:`setRenderingParameter`
|
.. seealso:: :py:func:`setRenderingParameter`
|
||||||
%End
|
%End
|
||||||
|
|
||||||
void setRenderingParameter( QgsColorRampPointCloud3DSymbol::RenderingParameter parameter );
|
void setRenderingParameter( QgsColorRampPointCloud3DSymbol::RenderingParameter parameter );
|
||||||
%Docstring
|
%Docstring
|
||||||
Sets the parameter used to select the color of the point cloud when using color ramp coloring
|
Sets the parameter used to select the color of the point cloud
|
||||||
|
|
||||||
.. seealso:: :py:func:`renderingParameter`
|
.. seealso:: :py:func:`renderingParameter`
|
||||||
%End
|
%End
|
||||||
|
@ -54,15 +54,12 @@ class _3D_EXPORT QgsPointCloud3DSymbol : public QgsAbstract3DSymbol
|
|||||||
|
|
||||||
QgsAbstract3DSymbol *clone() const override SIP_FACTORY { return nullptr; }
|
QgsAbstract3DSymbol *clone() const override SIP_FACTORY { return nullptr; }
|
||||||
|
|
||||||
void writeXml( QDomElement &elem, const QgsReadWriteContext &context ) const override { Q_UNUSED( context ); }
|
void writeXml( QDomElement &elem, const QgsReadWriteContext &context ) const override { Q_UNUSED( elem ); Q_UNUSED( context ); }
|
||||||
void readXml( const QDomElement &elem, const QgsReadWriteContext &context ) override { Q_UNUSED( context ); }
|
void readXml( const QDomElement &elem, const QgsReadWriteContext &context ) override { Q_UNUSED( elem ); Q_UNUSED( context ); }
|
||||||
|
|
||||||
QString type() const override { return "pointcloud"; }
|
QString type() const override { return "pointcloud"; }
|
||||||
|
|
||||||
/**
|
//! Returns the rendering style used to render the point cloud
|
||||||
* Returns the rendering style
|
|
||||||
* \see setRenderingStyle( QgsPointCloud3DSymbol::RenderingStyle style )
|
|
||||||
*/
|
|
||||||
QgsPointCloud3DSymbol::RenderingStyle renderingStyle() const { return mRenderingStyle; }
|
QgsPointCloud3DSymbol::RenderingStyle renderingStyle() const { return mRenderingStyle; }
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
@ -179,13 +176,13 @@ class _3D_EXPORT QgsColorRampPointCloud3DSymbol : public QgsPointCloud3DSymbol
|
|||||||
void setPointSize( float size );
|
void setPointSize( float size );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the parameter used to select the color of the point cloud when using color ramp coloring
|
* Returns the parameter used to select the color of the point cloud
|
||||||
* \see setRenderingParameter( QgsPointCloud3DSymbol::RenderingParameter parameter )
|
* \see setRenderingParameter( QgsColorRampPointCloud3DSymbol::RenderingParameter parameter )
|
||||||
*/
|
*/
|
||||||
QgsColorRampPointCloud3DSymbol::RenderingParameter renderingParameter() const;
|
QgsColorRampPointCloud3DSymbol::RenderingParameter renderingParameter() const;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the parameter used to select the color of the point cloud when using color ramp coloring
|
* Sets the parameter used to select the color of the point cloud
|
||||||
* \see renderingParameter()
|
* \see renderingParameter()
|
||||||
*/
|
*/
|
||||||
void setRenderingParameter( QgsColorRampPointCloud3DSymbol::RenderingParameter parameter );
|
void setRenderingParameter( QgsColorRampPointCloud3DSymbol::RenderingParameter parameter );
|
||||||
|
Loading…
x
Reference in New Issue
Block a user