@@ -47,7 +47,7 @@ class ANALYSIS_EXPORT QgsGeometryAnalyzer
47
47
@param onlySelectedFeatures if true, only selected features are considered, else all the features
48
48
@param p progress dialog (or 0 if no progress dialog is to be shown)
49
49
@note: added in version 1.4*/
50
- bool simplify ( QgsVectorLayer* layer, const QString& shapefileName, double tolerance, \
50
+ bool simplify ( QgsVectorLayer* layer, const QString& shapefileName, double tolerance,
51
51
bool onlySelectedFeatures = false , QProgressDialog* p = 0 );
52
52
53
53
/* *Calculate the true centroids, or 'center of mass' for a vector layer and
@@ -58,7 +58,7 @@ class ANALYSIS_EXPORT QgsGeometryAnalyzer
58
58
@param onlySelectedFeatures if true, only selected features are considered, else all the features
59
59
@param p progress dialog (or 0 if no progress dialog is to be shown)
60
60
@note: added in version 1.4*/
61
- bool centroids ( QgsVectorLayer* layer, const QString& shapefileName, \
61
+ bool centroids ( QgsVectorLayer* layer, const QString& shapefileName,
62
62
bool onlySelectedFeatures = false , QProgressDialog* p = 0 );
63
63
64
64
/* *Create a polygon based on the extent of all (selected) features and write it to a new shape file
@@ -80,7 +80,7 @@ class ANALYSIS_EXPORT QgsGeometryAnalyzer
80
80
@param bufferDistanceField index of the attribute field that contains the buffer distance (or -1 if all features have the same buffer distance)
81
81
@param p progress dialog (or 0 if no progress dialog is to be shown)
82
82
@note: added in version 1.3*/
83
- bool buffer ( QgsVectorLayer* layer, const QString& shapefileName, double bufferDistance, \
83
+ bool buffer ( QgsVectorLayer* layer, const QString& shapefileName, double bufferDistance,
84
84
bool onlySelectedFeatures = false , bool dissolve = false , int bufferDistanceField = -1 , QProgressDialog* p = 0 );
85
85
86
86
/* *Create convex hull(s) of a vector layer and write it to a new shape file
@@ -92,7 +92,7 @@ class ANALYSIS_EXPORT QgsGeometryAnalyzer
92
92
all features have the same buffer distance)
93
93
@param p progress dialog (or 0 if no progress dialog is to be shown)
94
94
@note: added in version 1.4*/
95
- bool convexHull ( QgsVectorLayer* layer, const QString& shapefileName, bool onlySelectedFeatures = false , \
95
+ bool convexHull ( QgsVectorLayer* layer, const QString& shapefileName, bool onlySelectedFeatures = false ,
96
96
int uniqueIdField = -1 , QProgressDialog* p = 0 );
97
97
98
98
/* *Dissolve a vector layer and write it to a new shape file
@@ -104,7 +104,7 @@ class ANALYSIS_EXPORT QgsGeometryAnalyzer
104
104
all features should be dissolved together)
105
105
@param p progress dialog (or 0 if no progress dialog is to be shown)
106
106
@note: added in version 1.4*/
107
- bool dissolve ( QgsVectorLayer* layer, const QString& shapefileName, bool onlySelectedFeatures = false , \
107
+ bool dissolve ( QgsVectorLayer* layer, const QString& shapefileName, bool onlySelectedFeatures = false ,
108
108
int uniqueIdField = -1 , QProgressDialog* p = 0 );
109
109
110
110
private:
@@ -116,7 +116,7 @@ class ANALYSIS_EXPORT QgsGeometryAnalyzer
116
116
/* *Helper function to get the cetroid of an individual feature*/
117
117
void centroidFeature ( QgsFeature& f, QgsVectorFileWriter* vfw );
118
118
/* *Helper function to buffer an individual feature*/
119
- void bufferFeature ( QgsFeature& f, int nProcessedFeatures, QgsVectorFileWriter* vfw, bool dissolve, QgsGeometry** dissolveGeometry, \
119
+ void bufferFeature ( QgsFeature& f, int nProcessedFeatures, QgsVectorFileWriter* vfw, bool dissolve, QgsGeometry** dissolveGeometry,
120
120
double bufferDistance, int bufferDistanceField );
121
121
/* *Helper function to get the convex hull of feature(s)*/
122
122
void convexFeature ( QgsFeature& f, int nProcessedFeatures, QgsGeometry** dissolveGeometry );
0 commit comments