Skip to content

Commit f03c657

Browse files
committedOct 16, 2017
Update sip binding
1 parent cfec125 commit f03c657

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed
 

‎python/core/geometry/qgsgeometry.sip

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -396,6 +396,15 @@ class QgsGeometry
396396
*/
397397
int reshapeGeometry( const QList<QgsPoint>& reshapeWithLine );
398398

399+
/**
400+
* Replaces a part of this geometry with another line with Z support
401+
*
402+
* @return 0 in case of success
403+
*
404+
* @note added in 2.18
405+
*/
406+
int reshapeGeometry( const QList<QgsPointV2>& reshapeWithLine );
407+
399408
/** Changes this geometry such that it does not intersect the other geometry
400409
* @param other geometry that should not be intersect
401410
* @return 0 in case of success

‎python/gui/qgsmaptoolcapture.sip

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,15 @@ class QgsMapToolCapture : public QgsMapToolAdvancedDigitizing
163163
*/
164164
QList<QgsPoint> points();
165165

166+
/**
167+
* List of digitized points with z support
168+
*
169+
* @return List of points
170+
*
171+
* @node added in 2.18
172+
*/
173+
QList<QgsPointV2> pointsV2();
174+
166175
/**
167176
* Set the points on which to work
168177
*

0 commit comments

Comments
 (0)
Please sign in to comment.