fix documentation check

This commit is contained in:
NEDJIMAbelgacem 2020-11-24 15:44:52 +01:00 committed by Martin Dobias
parent 5e76bc6fcb
commit 015f306f84
2 changed files with 13 additions and 1 deletions

View File

@ -88,6 +88,9 @@ class QgsNoRenderingPointCloud3DSymbol : QgsPointCloud3DSymbol
%End
public:
QgsNoRenderingPointCloud3DSymbol( QgsPointCloudLayer *layer );
%Docstring
Constructor for QgsNoRenderingPointCloud3DSymbol
%End
virtual QgsAbstract3DSymbol *clone() const /Factory/;
@ -116,6 +119,9 @@ class QgsSingleColorPointCloud3DSymbol : QgsPointCloud3DSymbol
%End
public:
QgsSingleColorPointCloud3DSymbol( QgsPointCloudLayer *layer );
%Docstring
Constructor for QgsSingleColorPointCloud3DSymbol
%End
virtual QgsAbstract3DSymbol *clone() const /Factory/;
@ -173,6 +179,9 @@ class QgsColorRampPointCloud3DSymbol : QgsPointCloud3DSymbol
%End
public:
QgsColorRampPointCloud3DSymbol( QgsPointCloudLayer *layer );
%Docstring
Constructor for QgsColorRampPointCloud3DSymbol
%End
virtual QgsAbstract3DSymbol *clone() const /Factory/;

View File

@ -92,6 +92,7 @@ class _3D_EXPORT QgsPointCloud3DSymbol : public QgsAbstract3DSymbol
class _3D_EXPORT QgsNoRenderingPointCloud3DSymbol : public QgsPointCloud3DSymbol
{
public:
//! Constructor for QgsNoRenderingPointCloud3DSymbol
QgsNoRenderingPointCloud3DSymbol( QgsPointCloudLayer *layer );
QgsAbstract3DSymbol *clone() const override SIP_FACTORY;
@ -112,6 +113,7 @@ class _3D_EXPORT QgsNoRenderingPointCloud3DSymbol : public QgsPointCloud3DSymbol
class _3D_EXPORT QgsSingleColorPointCloud3DSymbol : public QgsPointCloud3DSymbol
{
public:
//! Constructor for QgsSingleColorPointCloud3DSymbol
QgsSingleColorPointCloud3DSymbol( QgsPointCloudLayer *layer );
QgsAbstract3DSymbol *clone() const override SIP_FACTORY;
@ -160,6 +162,7 @@ class _3D_EXPORT QgsSingleColorPointCloud3DSymbol : public QgsPointCloud3DSymbol
class _3D_EXPORT QgsColorRampPointCloud3DSymbol : public QgsPointCloud3DSymbol
{
public:
//! Constructor for QgsColorRampPointCloud3DSymbol
QgsColorRampPointCloud3DSymbol( QgsPointCloudLayer *layer );
QgsAbstract3DSymbol *clone() const override SIP_FACTORY;
@ -181,7 +184,7 @@ class _3D_EXPORT QgsColorRampPointCloud3DSymbol : public QgsPointCloud3DSymbol
/**
* Returns the parameter used to select the color of the point cloud
* \see setRenderingParameter( QgsColorRampPointCloud3DSymbol::RenderingParameter parameter )
* \see setRenderingParameter( const QString &parameter )
*/
QString renderingParameter() const;