~ubuntu-branches/ubuntu/oneiric/qwt/oneiric-proposed

« back to all changes in this revision

Viewing changes to qwt-5.1.1/doc/man/man3/QwtCPointerData.3

  • Committer: Bazaar Package Importer
  • Author(s): Fathi Boudra
  • Date: 2009-04-12 23:25:58 UTC
  • mfrom: (1.1.4 upstream) (2.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090412232558-3bl06x785yr8xm8u
Tags: 5.1.2-1
* New upstream release.
* Bump compat/debhelper to 7.
* Bump Standards-Version to 3.8.1. No changes needed.
* Invert Maintainers and Uploaders field.
* Fix lintian warnings:
  - dh_clean _k deprecated.
  - missing dependency on libc.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
.TH "QwtCPointerData" 3 "24 May 2008" "Version 5.1.1" "Qwt User's Guide" \" -*- nroff -*-
2
 
.ad l
3
 
.nh
4
 
.SH NAME
5
 
QwtCPointerData \- 
6
 
.SH SYNOPSIS
7
 
.br
8
 
.PP
9
 
Inherits \fBQwtData\fP.
10
 
.PP
11
 
.SH "Detailed Description"
12
 
.PP 
13
 
Data class containing two pointers to memory blocks of doubles. 
14
 
.PP
15
 
Definition at line 144 of file qwt_data.h.
16
 
.SS "Public Member Functions"
17
 
 
18
 
.in +1c
19
 
.ti -1c
20
 
.RI "\fBQwtCPointerData\fP (const double *x, const double *y, size_t size)"
21
 
.br
22
 
.ti -1c
23
 
.RI "\fBQwtCPointerData\fP & \fBoperator=\fP (const \fBQwtCPointerData\fP &)"
24
 
.br
25
 
.ti -1c
26
 
.RI "virtual \fBQwtData\fP * \fBcopy\fP () const"
27
 
.br
28
 
.ti -1c
29
 
.RI "virtual size_t \fBsize\fP () const"
30
 
.br
31
 
.ti -1c
32
 
.RI "virtual double \fBx\fP (size_t i) const"
33
 
.br
34
 
.ti -1c
35
 
.RI "virtual double \fBy\fP (size_t i) const"
36
 
.br
37
 
.ti -1c
38
 
.RI "const double * \fBxData\fP () const"
39
 
.br
40
 
.ti -1c
41
 
.RI "const double * \fByData\fP () const"
42
 
.br
43
 
.ti -1c
44
 
.RI "virtual \fBQwtDoubleRect\fP \fBboundingRect\fP () const"
45
 
.br
46
 
.in -1c
47
 
.SH "Constructor & Destructor Documentation"
48
 
.PP 
49
 
.SS "QwtCPointerData::QwtCPointerData (const double * x, const double * y, size_t size)"
50
 
.PP
51
 
Constructor
52
 
.PP
53
 
\fBParameters:\fP
54
 
.RS 4
55
 
\fIx\fP Array of x values 
56
 
.br
57
 
\fIy\fP Array of y values 
58
 
.br
59
 
\fIsize\fP Size of the x and y arrays
60
 
.RE
61
 
.PP
62
 
\fBWarning:\fP
63
 
.RS 4
64
 
The programmer must assure that the memory blocks referenced by the pointers remain valid during the lifetime of the QwtPlotCPointer object.
65
 
.RE
66
 
.PP
67
 
\fBSee also:\fP
68
 
.RS 4
69
 
\fBQwtPlotCurve::setData()\fP, \fBQwtPlotCurve::setRawData()\fP 
70
 
.RE
71
 
.PP
72
 
 
73
 
.PP
74
 
Definition at line 281 of file qwt_data.cpp.
75
 
.PP
76
 
Referenced by copy().
77
 
.SH "Member Function Documentation"
78
 
.PP 
79
 
.SS "\fBQwtCPointerData\fP & QwtCPointerData::operator= (const \fBQwtCPointerData\fP &)"
80
 
.PP
81
 
Assignment. 
82
 
.PP
83
 
Definition at line 290 of file qwt_data.cpp.
84
 
.PP
85
 
References d_size, d_x, and d_y.
86
 
.SS "\fBQwtData\fP * QwtCPointerData::copy () const\fC [virtual]\fP"
87
 
.PP
88
 
\fBReturns:\fP
89
 
.RS 4
90
 
Pointer to a copy (virtual copy constructor) 
91
 
.RE
92
 
.PP
93
 
 
94
 
.PP
95
 
Implements \fBQwtData\fP.
96
 
.PP
97
 
Definition at line 344 of file qwt_data.cpp.
98
 
.PP
99
 
References QwtCPointerData().
100
 
.SS "size_t QwtCPointerData::size () const\fC [virtual]\fP"
101
 
.PP
102
 
\fBReturns:\fP
103
 
.RS 4
104
 
Size of the data set 
105
 
.RE
106
 
.PP
107
 
 
108
 
.PP
109
 
Implements \fBQwtData\fP.
110
 
.PP
111
 
Definition at line 302 of file qwt_data.cpp.
112
 
.PP
113
 
Referenced by boundingRect().
114
 
.SS "double QwtCPointerData::x (size_t i) const\fC [virtual]\fP"
115
 
.PP
116
 
Return the x value of data point i
117
 
.PP
118
 
\fBParameters:\fP
119
 
.RS 4
120
 
\fIi\fP Index 
121
 
.RE
122
 
.PP
123
 
\fBReturns:\fP
124
 
.RS 4
125
 
x X value of data point i 
126
 
.RE
127
 
.PP
128
 
 
129
 
.PP
130
 
Implements \fBQwtData\fP.
131
 
.PP
132
 
Definition at line 313 of file qwt_data.cpp.
133
 
.SS "double QwtCPointerData::y (size_t i) const\fC [virtual]\fP"
134
 
.PP
135
 
Return the y value of data point i
136
 
.PP
137
 
\fBParameters:\fP
138
 
.RS 4
139
 
\fIi\fP Index 
140
 
.RE
141
 
.PP
142
 
\fBReturns:\fP
143
 
.RS 4
144
 
y Y value of data point i 
145
 
.RE
146
 
.PP
147
 
 
148
 
.PP
149
 
Implements \fBQwtData\fP.
150
 
.PP
151
 
Definition at line 324 of file qwt_data.cpp.
152
 
.SS "const double * QwtCPointerData::xData () const"
153
 
.PP
154
 
\fBReturns:\fP
155
 
.RS 4
156
 
Array of the x-values 
157
 
.RE
158
 
.PP
159
 
 
160
 
.PP
161
 
Definition at line 330 of file qwt_data.cpp.
162
 
.SS "const double * QwtCPointerData::yData () const"
163
 
.PP
164
 
\fBReturns:\fP
165
 
.RS 4
166
 
Array of the y-values 
167
 
.RE
168
 
.PP
169
 
 
170
 
.PP
171
 
Definition at line 336 of file qwt_data.cpp.
172
 
.SS "\fBQwtDoubleRect\fP QwtCPointerData::boundingRect () const\fC [virtual]\fP"
173
 
.PP
174
 
Returns the bounding rectangle of the data. If there is no bounding rect, like for empty data the rectangle is invalid: QwtDoubleRect::isValid() == false 
175
 
.PP
176
 
Reimplemented from \fBQwtData\fP.
177
 
.PP
178
 
Definition at line 354 of file qwt_data.cpp.
179
 
.PP
180
 
References size().
181
 
 
182
 
.SH "Author"
183
 
.PP 
184
 
Generated automatically by Doxygen for Qwt User's Guide from the source code.