qwt_data.cpp 7.7 KB
Newer Older
pixhawk's avatar
pixhawk committed
1 2 3 4
/* -*- mode: C++ ; c-file-style: "stroustrup" -*- *****************************
 * Qwt Widget Library
 * Copyright (C) 1997   Josef Wilgen
 * Copyright (C) 2002   Uwe Rathmann
5
 *
pixhawk's avatar
pixhawk committed
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the Qwt License, Version 1.0
 *****************************************************************************/

#include "qwt_math.h"
#include "qwt_data.h"

//! Constructor
QwtData::QwtData()
{
}

//! Destructor
QwtData::~QwtData()
{
}

/*!
  Returns the bounding rectangle of the data. If there is
  no bounding rect, like for empty data the rectangle is invalid:
  QwtDoubleRect::isValid() == false

28
  \warning This is an slow implementation iterating over all points.
pixhawk's avatar
pixhawk committed
29
           It is intended to be overloaded by derived classes. In case of
30
           auto scaling boundingRect() is called for every replot, so it
pixhawk's avatar
pixhawk committed
31 32 33 34 35 36 37 38 39 40 41 42 43 44
           might be worth to implement a cache, or use x(0), x(size() - 1)
           for ordered data ...
*/
QwtDoubleRect QwtData::boundingRect() const
{
    const size_t sz = size();

    if ( sz <= 0 )
        return QwtDoubleRect(1.0, 1.0, -2.0, -2.0); // invalid

    double minX, maxX, minY, maxY;
    minX = maxX = x(0);
    minY = maxY = y(0);

45
    for ( size_t i = 1; i < sz; i++ ) {
pixhawk's avatar
pixhawk committed
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
        const double xv = x(i);
        if ( xv < minX )
            minX = xv;
        if ( xv > maxX )
            maxX = xv;

        const double yv = y(i);
        if ( yv < minY )
            minY = yv;
        if ( yv > maxY )
            maxY = yv;
    }
    return QwtDoubleRect(minX, minY, maxX - minX, maxY - minY);
}

/*!
  Constructor

  \param polygon Polygon data
  \sa QwtPlotCurve::setData()
*/
#if QT_VERSION >= 0x040000
QwtPolygonFData::QwtPolygonFData(const QPolygonF &polygon):
#else
QwtPolygonFData::QwtPolygonFData(const QwtArray<QwtDoublePoint> &polygon):
#endif
    d_data(polygon)
{
}

76
//! Assignment
pixhawk's avatar
pixhawk committed
77 78 79
QwtPolygonFData& QwtPolygonFData::operator=(
    const QwtPolygonFData &data)
{
80
    if (this != &data) {
pixhawk's avatar
pixhawk committed
81 82 83 84 85
        d_data = data.d_data;
    }
    return *this;
}

86 87 88 89
//! \return Size of the data set
size_t QwtPolygonFData::size() const
{
    return d_data.size();
pixhawk's avatar
pixhawk committed
90 91 92 93 94 95 96 97
}

/*!
  Return the x value of data point i

  \param i Index
  \return x X value of data point i
*/
98 99 100
double QwtPolygonFData::x(size_t i) const
{
    return d_data[int(i)].x();
pixhawk's avatar
pixhawk committed
101 102 103 104 105 106 107 108
}

/*!
  Return the y value of data point i

  \param i Index
  \return y Y value of data point i
*/
109 110 111
double QwtPolygonFData::y(size_t i) const
{
    return d_data[int(i)].y();
pixhawk's avatar
pixhawk committed
112 113 114 115 116 117 118 119 120 121 122 123 124 125
}

#if QT_VERSION >= 0x040000
const QPolygonF &QwtPolygonFData::data() const
#else
const QwtArray<QwtDoublePoint> &QwtPolygonFData::data() const
#endif
{
    return d_data;
}

/*!
  \return Pointer to a copy (virtual copy constructor)
*/
126 127 128
QwtData *QwtPolygonFData::copy() const
{
    return new QwtPolygonFData(d_data);
pixhawk's avatar
pixhawk committed
129 130 131 132 133 134 135
}

/*!
  Constructor

  \param x Array of x values
  \param y Array of y values
136

pixhawk's avatar
pixhawk committed
137 138 139
  \sa QwtPlotCurve::setData
*/
QwtArrayData::QwtArrayData(
140 141
    const QwtArray<double> &x, const QwtArray<double> &y):
    d_x(x),
pixhawk's avatar
pixhawk committed
142 143 144 145 146 147
    d_y(y)
{
}

/*!
  Constructor
148

pixhawk's avatar
pixhawk committed
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
  \param x Array of x values
  \param y Array of y values
  \param size Size of the x and y arrays
  \sa QwtPlotCurve::setData
*/
QwtArrayData::QwtArrayData(const double *x, const double *y, size_t size)
{
#if QT_VERSION >= 0x040000
    d_x.resize(size);
    qMemCopy(d_x.data(), x, size * sizeof(double));

    d_y.resize(size);
    qMemCopy(d_y.data(), y, size * sizeof(double));
#else
    d_x.detach();
    d_x.duplicate(x, size);

    d_y.detach();
    d_y.duplicate(y, size);
#endif
}

171
//! Assignment
pixhawk's avatar
pixhawk committed
172 173
QwtArrayData& QwtArrayData::operator=(const QwtArrayData &data)
{
174
    if (this != &data) {
pixhawk's avatar
pixhawk committed
175 176 177 178 179 180
        d_x = data.d_x;
        d_y = data.d_y;
    }
    return *this;
}

181 182 183 184
//! \return Size of the data set
size_t QwtArrayData::size() const
{
    return qwtMin(d_x.size(), d_y.size());
pixhawk's avatar
pixhawk committed
185 186 187 188 189 190 191 192
}

/*!
  Return the x value of data point i

  \param i Index
  \return x X value of data point i
*/
193 194 195
double QwtArrayData::x(size_t i) const
{
    return d_x[int(i)];
pixhawk's avatar
pixhawk committed
196 197 198 199 200 201 202 203
}

/*!
  Return the y value of data point i

  \param i Index
  \return y Y value of data point i
*/
204 205 206
double QwtArrayData::y(size_t i) const
{
    return d_y[int(i)];
pixhawk's avatar
pixhawk committed
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
}

//! \return Array of the x-values
const QwtArray<double> &QwtArrayData::xData() const
{
    return d_x;
}

//! \return Array of the y-values
const QwtArray<double> &QwtArrayData::yData() const
{
    return d_y;
}

/*!
  \return Pointer to a copy (virtual copy constructor)
*/
224 225 226
QwtData *QwtArrayData::copy() const
{
    return new QwtArrayData(d_x, d_y);
pixhawk's avatar
pixhawk committed
227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
}

/*!
  Returns the bounding rectangle of the data. If there is
  no bounding rect, like for empty data the rectangle is invalid:
  QwtDoubleRect::isValid() == false
*/
QwtDoubleRect QwtArrayData::boundingRect() const
{
    const size_t sz = size();

    if ( sz <= 0 )
        return QwtDoubleRect(1.0, 1.0, -2.0, -2.0); // invalid

    double minX, maxX, minY, maxY;
    QwtArray<double>::ConstIterator xIt = d_x.begin();
    QwtArray<double>::ConstIterator yIt = d_y.begin();
    QwtArray<double>::ConstIterator end = d_x.begin() + sz;
    minX = maxX = *xIt++;
    minY = maxY = *yIt++;

248
    while ( xIt < end ) {
pixhawk's avatar
pixhawk committed
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
        const double xv = *xIt++;
        if ( xv < minX )
            minX = xv;
        if ( xv > maxX )
            maxX = xv;

        const double yv = *yIt++;
        if ( yv < minY )
            minY = yv;
        if ( yv > maxY )
            maxY = yv;
    }
    return QwtDoubleRect(minX, minY, maxX - minX, maxY - minY);
}

/*!
  Constructor

  \param x Array of x values
  \param y Array of y values
  \param size Size of the x and y arrays

  \warning The programmer must assure that the memory blocks referenced
272
           by the pointers remain valid during the lifetime of the
pixhawk's avatar
pixhawk committed
273 274 275 276 277 278
           QwtPlotCPointer object.

  \sa QwtPlotCurve::setData(), QwtPlotCurve::setRawData()
*/
QwtCPointerData::QwtCPointerData(
    const double *x, const double *y, size_t size):
279 280
    d_x(x),
    d_y(y),
pixhawk's avatar
pixhawk committed
281 282 283 284
    d_size(size)
{
}

285
//! Assignment
pixhawk's avatar
pixhawk committed
286 287
QwtCPointerData& QwtCPointerData::operator=(const QwtCPointerData &data)
{
288
    if (this != &data) {
pixhawk's avatar
pixhawk committed
289 290 291 292 293 294 295
        d_x = data.d_x;
        d_y = data.d_y;
        d_size = data.d_size;
    }
    return *this;
}

296 297 298 299
//! \return Size of the data set
size_t QwtCPointerData::size() const
{
    return d_size;
pixhawk's avatar
pixhawk committed
300 301 302 303 304 305 306 307
}

/*!
  Return the x value of data point i

  \param i Index
  \return x X value of data point i
*/
308 309 310
double QwtCPointerData::x(size_t i) const
{
    return d_x[int(i)];
pixhawk's avatar
pixhawk committed
311 312 313 314 315 316 317 318
}

/*!
  Return the y value of data point i

  \param i Index
  \return y Y value of data point i
*/
319 320 321
double QwtCPointerData::y(size_t i) const
{
    return d_y[int(i)];
pixhawk's avatar
pixhawk committed
322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
}

//! \return Array of the x-values
const double *QwtCPointerData::xData() const
{
    return d_x;
}

//! \return Array of the y-values
const double *QwtCPointerData::yData() const
{
    return d_y;
}

/*!
  \return Pointer to a copy (virtual copy constructor)
*/
339
QwtData *QwtCPointerData::copy() const
pixhawk's avatar
pixhawk committed
340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362
{
    return new QwtCPointerData(d_x, d_y, d_size);
}

/*!
  Returns the bounding rectangle of the data. If there is
  no bounding rect, like for empty data the rectangle is invalid:
  QwtDoubleRect::isValid() == false
*/
QwtDoubleRect QwtCPointerData::boundingRect() const
{
    const size_t sz = size();

    if ( sz <= 0 )
        return QwtDoubleRect(1.0, 1.0, -2.0, -2.0); // invalid

    double minX, maxX, minY, maxY;
    const double *xIt = d_x;
    const double *yIt = d_y;
    const double *end = d_x + sz;
    minX = maxX = *xIt++;
    minY = maxY = *yIt++;

363
    while ( xIt < end ) {
pixhawk's avatar
pixhawk committed
364 365 366 367 368 369 370 371 372 373 374 375 376 377
        const double xv = *xIt++;
        if ( xv < minX )
            minX = xv;
        if ( xv > maxX )
            maxX = xv;

        const double yv = *yIt++;
        if ( yv < minY )
            minY = yv;
        if ( yv > maxY )
            maxY = yv;
    }
    return QwtDoubleRect(minX, minY, maxX - minX, maxY - minY);
}