1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
/* -*- mode: C++ ; c-file-style: "stroustrup" -*- *****************************
* Qwt Widget Library
* Copyright (C) 1997 Josef Wilgen
* Copyright (C) 2002 Uwe Rathmann
*
* 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
\warning This is an slow implementation iterating over all points.
It is intended to be overloaded by derived classes. In case of
auto scaling boundingRect() is called for every replot, so it
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);
for ( size_t i = 1; i < sz; i++ ) {
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)
{
}
//! Assignment
QwtPolygonFData& QwtPolygonFData::operator=(
const QwtPolygonFData &data)
{
if (this != &data) {
d_data = data.d_data;
}
return *this;
}
//! \return Size of the data set
size_t QwtPolygonFData::size() const
{
return d_data.size();
}
/*!
Return the x value of data point i
\param i Index
\return x X value of data point i
*/
double QwtPolygonFData::x(size_t i) const
{
return d_data[int(i)].x();
}
/*!
Return the y value of data point i
\param i Index
\return y Y value of data point i
*/
double QwtPolygonFData::y(size_t i) const
{
return d_data[int(i)].y();
}
#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)
*/
QwtData *QwtPolygonFData::copy() const
{
return new QwtPolygonFData(d_data);
}
/*!
Constructor
\param x Array of x values
\param y Array of y values
\sa QwtPlotCurve::setData
*/
QwtArrayData::QwtArrayData(
const QwtArray<double> &x, const QwtArray<double> &y):
d_x(x),
d_y(y)
{
}
/*!
Constructor
\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
}
//! Assignment
QwtArrayData& QwtArrayData::operator=(const QwtArrayData &data)
{
if (this != &data) {
d_x = data.d_x;
d_y = data.d_y;
}
return *this;
}
//! \return Size of the data set
size_t QwtArrayData::size() const
{
return qwtMin(d_x.size(), d_y.size());
}
/*!
Return the x value of data point i
\param i Index
\return x X value of data point i
*/
double QwtArrayData::x(size_t i) const
{
return d_x[int(i)];
}
/*!
Return the y value of data point i
\param i Index
\return y Y value of data point i
*/
double QwtArrayData::y(size_t i) const
{
return d_y[int(i)];
}
//! \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)
*/
QwtData *QwtArrayData::copy() const
{
return new QwtArrayData(d_x, d_y);
}
/*!
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++;
while ( xIt < end ) {
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
by the pointers remain valid during the lifetime of the
QwtPlotCPointer object.
\sa QwtPlotCurve::setData(), QwtPlotCurve::setRawData()
*/
QwtCPointerData::QwtCPointerData(
const double *x, const double *y, size_t size):
d_x(x),
d_y(y),
d_size(size)
{
}
//! Assignment
QwtCPointerData& QwtCPointerData::operator=(const QwtCPointerData &data)
{
if (this != &data) {
d_x = data.d_x;
d_y = data.d_y;
d_size = data.d_size;
}
return *this;
}
//! \return Size of the data set
size_t QwtCPointerData::size() const
{
return d_size;
}
/*!
Return the x value of data point i
\param i Index
\return x X value of data point i
*/
double QwtCPointerData::x(size_t i) const
{
return d_x[int(i)];
}
/*!
Return the y value of data point i
\param i Index
\return y Y value of data point i
*/
double QwtCPointerData::y(size_t i) const
{
return d_y[int(i)];
}
//! \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)
*/
QwtData *QwtCPointerData::copy() const
{
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++;
while ( xIt < end ) {
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);
}