File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -396,6 +396,15 @@ class QgsGeometry
396
396
*/
397
397
int reshapeGeometry( const QList<QgsPoint>& reshapeWithLine );
398
398
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
+
399
408
/** Changes this geometry such that it does not intersect the other geometry
400
409
* @param other geometry that should not be intersect
401
410
* @return 0 in case of success
Original file line number Diff line number Diff line change @@ -163,6 +163,15 @@ class QgsMapToolCapture : public QgsMapToolAdvancedDigitizing
163
163
*/
164
164
QList<QgsPoint> points();
165
165
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
+
166
175
/**
167
176
* Set the points on which to work
168
177
*
You can’t perform that action at this time.
0 commit comments