Sorry to repost again my problem.
I have a fitted curve (the attribute of the curve is setted to Fitted).
I suppose that in this way Qwt compute for me the interpolated points.
well, if it so, I would use these interpolated points, in order to do other calculations.
I use this code
Qt Code:
  1. t = (QwtSplineCurveFitter*)dSolar[11]->curveFitter();
  2. sp= t->spline();
  3. qDebug()<<"draw,spline..."<<sp.points();
To copy to clipboard, switch view to plain text mode 
dSolar[11] is simply a QwtPlotCurve.
Why I get an empty QPolygonF?
Helps appreciated