mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
17 lines
411 B
Plaintext
17 lines
411 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 );
|
|
};
|