File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -124,6 +124,7 @@ class CORE_EXPORT QgsGeos: public QgsGeometryEngine
124
124
125
125
/* *
126
126
* Adds a new island polygon to a multipolygon feature
127
+ * \param geometry geometry to add part to
127
128
* \param newPart part to add. Ownership is NOT transferred.
128
129
* \returns OperationResult a result code: success or reason of failure
129
130
*/
@@ -342,15 +343,17 @@ class CORE_EXPORT QgsGeos: public QgsGeometryEngine
342
343
343
344
/* *
344
345
* Returns a geos geometry - caller takes ownership of the object (should be deleted with GEOSGeom_destroy_r)
346
+ * \param geometry geometry to convert to GEOS representation
345
347
* \param precision The precision of the grid to which to snap the geometry vertices. If 0, no snapping is performed.
346
348
*/
347
349
static geos::unique_ptr asGeos ( const QgsGeometry &geometry, double precision = 0 );
348
350
349
351
/* *
350
352
* Returns a geos geometry - caller takes ownership of the object (should be deleted with GEOSGeom_destroy_r)
353
+ * \param geometry geometry to convert to GEOS representation
351
354
* \param precision The precision of the grid to which to snap the geometry vertices. If 0, no snapping is performed.
352
355
*/
353
- static geos::unique_ptr asGeos ( const QgsAbstractGeometry *geom , double precision = 0 );
356
+ static geos::unique_ptr asGeos ( const QgsAbstractGeometry *geometry , double precision = 0 );
354
357
static QgsPoint coordSeqPoint ( const GEOSCoordSequence *cs, int i, bool hasZ, bool hasM );
355
358
356
359
static GEOSContextHandle_t getGEOSHandler ();
You can’t perform that action at this time.
0 commit comments