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