Apply paul's suggestions:wq

This commit is contained in:
Loïc Bartoletti 2021-04-29 12:58:29 +02:00
parent 706079d97d
commit a6d554d233
3 changed files with 14 additions and 14 deletions

View File

@ -25,14 +25,14 @@ Base class for map tools that edit vector geometry
double defaultZValue() const;
%Docstring
Returns default Z value
Use for set Z coordinate to new vertex
Returns default Z value.
Used for setting Z coordinate to new vertex.
%End
double defaultMValue() const;
%Docstring
Returns default M value
Use for set M coordinate to new vertex
Returns default M value.
Used for setting M coordinate to new vertex.
.. versionadded:: 3.20
%End

View File

@ -169,16 +169,16 @@ class CORE_EXPORT Qgis
static const double SCALE_PRECISION;
/**
* Default Z coordinate value
* This value have to be assigned to the Z coordinate for the vertex.
* \since QGIS 3.0
* Default Z coordinate value.
* This value have to be assigned to the Z coordinate for the vertex.
* \since QGIS 3.0
*/
static const double DEFAULT_Z_COORDINATE;
/**
* Default M coordinate value
* This value have to be assigned to the M coordinate for the vertex.
* \since QGIS 3.20
* Default M coordinate value.
* This value have to be assigned to the M coordinate for the vertex.
* \since QGIS 3.20
*/
static const double DEFAULT_M_COORDINATE;

View File

@ -39,14 +39,14 @@ class GUI_EXPORT QgsMapToolEdit: public QgsMapTool
Flags flags() const override { return QgsMapTool::EditTool; }
/**
* Returns default Z value
* Use for set Z coordinate to new vertex
* Returns default Z value.
* Used for setting Z coordinate to new vertex.
*/
double defaultZValue() const;
/**
* Returns default M value
* Use for set M coordinate to new vertex
* Returns default M value.
* Used for setting M coordinate to new vertex.
*
* \since QGIS 3.20
*/