This commit is contained in:
Peter Petrik 2018-05-22 14:35:10 +02:00
parent 33390123e3
commit c75876938b
2 changed files with 4 additions and 10 deletions

View File

@ -193,16 +193,12 @@ read on demand
virtual QgsMeshVertex vertex( int index ) const = 0;
%Docstring
Factory for mesh vertex with index
:return: New mesh vertex on index
Returns the mesh vertex at index
%End
virtual QgsMeshFace face( int index ) const = 0;
%Docstring
Factory for mesh face with index
:return: new mesh face on index
Returns the mesh face at index
%End
};

View File

@ -185,14 +185,12 @@ class CORE_EXPORT QgsMeshDataSourceInterface SIP_ABSTRACT
virtual int faceCount() const = 0;
/**
* \brief Factory for mesh vertex with index
* \returns New mesh vertex on index
* Returns the mesh vertex at index
*/
virtual QgsMeshVertex vertex( int index ) const = 0;
/**
* \brief Factory for mesh face with index
* \returns new mesh face on index
* Returns the mesh face at index
*/
virtual QgsMeshFace face( int index ) const = 0;
};