@@ -17,7 +17,7 @@ class QgsGeometryAnalyzer
17
17
@param tolerance (level of simplification)
18
18
@param onlySelectedFeatures if true, only selected features are considered, else all the features
19
19
@param p progress dialog (or 0 if no progress dialog is to be shown)
20
- @note: added in version 1.4 */
20
+ */
21
21
bool simplify( QgsVectorLayer* layer, const QString& shapefileName, double tolerance,
22
22
bool onlySelectedFeatures = false, QProgressDialog* p = 0 );
23
23
@@ -27,7 +27,7 @@ class QgsGeometryAnalyzer
27
27
@param shapefileName path to the output shp
28
28
@param onlySelectedFeatures if true, only selected features are considered, else all the features
29
29
@param p progress dialog (or 0 if no progress dialog is to be shown)
30
- @note: added in version 1.4 */
30
+ */
31
31
bool centroids( QgsVectorLayer* layer, const QString& shapefileName,
32
32
bool onlySelectedFeatures = false, QProgressDialog* p = 0 );
33
33
@@ -36,7 +36,7 @@ class QgsGeometryAnalyzer
36
36
@param shapefileName path to the output shp
37
37
@param onlySelectedFeatures if true, only selected features are considered, else all the features
38
38
@param p progress dialog (or 0 if no progress dialog is to be shown)
39
- @note: added in version 1.4 */
39
+ */
40
40
bool extent( QgsVectorLayer* layer, const QString& shapefileName, bool onlySelectedFeatures = false, QProgressDialog* p = 0 );
41
41
42
42
/**Create buffers for a vector layer and write it to a new shape file
@@ -47,7 +47,7 @@ class QgsGeometryAnalyzer
47
47
@param dissolve if true, merge all the buffers to a big multipolygon
48
48
@param bufferDistanceField index of the attribute field that contains the buffer distance (or -1 if all features have the same buffer distance)
49
49
@param p progress dialog (or 0 if no progress dialog is to be shown)
50
- @note: added in version 1.3 */
50
+ */
51
51
bool buffer( QgsVectorLayer* layer, const QString& shapefileName, double bufferDistance,
52
52
bool onlySelectedFeatures = false, bool dissolve = false, int bufferDistanceField = -1, QProgressDialog* p = 0 );
53
53
@@ -58,7 +58,7 @@ class QgsGeometryAnalyzer
58
58
@param uniqueIdField index of the attribute field that contains the unique convex hull id (or -1 if
59
59
all features have the same buffer distance)
60
60
@param p progress dialog (or 0 if no progress dialog is to be shown)
61
- @note: added in version 1.4 */
61
+ */
62
62
bool convexHull( QgsVectorLayer* layer, const QString& shapefileName, bool onlySelectedFeatures = false,
63
63
int uniqueIdField = -1, QProgressDialog* p = 0 );
64
64
@@ -69,7 +69,7 @@ class QgsGeometryAnalyzer
69
69
@param uniqueIdField index of the attribute field that contains the unique id to dissolve on (or -1 if
70
70
all features should be dissolved together)
71
71
@param p progress dialog (or 0 if no progress dialog is to be shown)
72
- @note: added in version 1.4 */
72
+ */
73
73
bool dissolve( QgsVectorLayer* layer, const QString& shapefileName, bool onlySelectedFeatures = false,
74
74
int uniqueIdField = -1, QProgressDialog* p = 0 );
75
75
0 commit comments