mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
18 lines
433 B
Plaintext
18 lines
433 B
Plaintext
|
/** \ingroup analysis
|
||
|
*/
|
||
|
|
||
|
class QgsPointSample
|
||
|
{
|
||
|
%TypeHeaderCode
|
||
|
#include <qgspointsample.h>
|
||
|
%End
|
||
|
|
||
|
public:
|
||
|
QgsPointSample( QgsVectorLayer* inputLayer, const QString& outputLayer, QString nPointsAttribute, QString minDistAttribute = QString() );
|
||
|
~QgsPointSample();
|
||
|
|
||
|
/**Starts calculation of random points
|
||
|
@return 0 in case of success*/
|
||
|
int createRandomPoints( QProgressDialog* pd );
|
||
|
};
|