Hi,
I need to find index of all points that are into the area of a selected area by a picker. I could find index of an only one point index by this code:

Qt Code:
  1. connect( picker, SIGNAL( selected( const QPolygon & ), SLOT(UpdVizir( const QPolygon & )));
To copy to clipboard, switch view to plain text mode 

Qt Code:
  1. void TrendTop::UpdVizir( const QPolygon &points )
  2. {
  3. if ( points.size() != 1 )
  4. return;
  5.  
  6. double dist;
  7. int index = curv1->closestPoint( points[0], &dist );
  8. }
To copy to clipboard, switch view to plain text mode 

How all points into a selected area can be obtained?