add QgsRubberBand::getPoint to python interface (following up r8209)

git-svn-id: http://svn.osgeo.org/qgis/trunk@8216 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
jef 2008-03-13 13:11:53 +00:00
parent e3bb161618
commit 9e7a287e04

View File

@ -39,6 +39,9 @@ class QgsRubberBand: QgsMapCanvasItem
/**Returns count of vertices in all lists of mPoint*/
int numberOfVertices() const;
/**Return vertex*/
const QgsPoint *getPoint(int i, int j=0) const;
protected:
virtual void paint(QPainter* p);
@ -46,7 +49,3 @@ class QgsRubberBand: QgsMapCanvasItem
void updateRect();
};