return myPoints;
}
+/*!
+ Sets curve's data.
+*/
+void Plot2d_Curve::setData( const double* hData, const double* vData, long size )
+{
+ clearAllPoints();
+ for(long i = 0; i < size; i++) addPoint(hData[i], vData[i]);
+}
+
/*!
Gets curve's data : abscissas of points
*/
void deletePoint(int thePos);
void clearAllPoints();
pointList getPointList() const;
+
+ void setData( const double* hData, const double* vData, long size );
double* horData() const;
double* verData() const;
+
int nbPoints() const;
bool isEmpty() const;