~ubuntu-branches/ubuntu/intrepid/plplot/intrepid

« back to all changes in this revision

Viewing changes to doc/docbook/src/plrgbhls.html

  • Committer: Bazaar Package Importer
  • Author(s): Rafael Laboissiere
  • Date: 2006-11-04 10:19:34 UTC
  • mfrom: (2.1.8 edgy)
  • Revision ID: james.westby@ubuntu.com-20061104101934-mlirvdg4gpwi6i5q
Tags: 5.6.1-10
* Orphaning the package
* debian/control: Changed the maintainer to the Debian QA Group

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
 
2
<HTML
 
3
><HEAD
 
4
><TITLE
 
5
>      plrgbhls: Convert RGB color to HLS
 
6
    </TITLE
 
7
><META
 
8
NAME="GENERATOR"
 
9
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
 
10
REL="HOME"
 
11
TITLE="The PLplot Plotting Library"
 
12
HREF="index.html"><LINK
 
13
REL="UP"
 
14
TITLE="The Common API for PLplot"
 
15
HREF="api.html"><LINK
 
16
REL="PREVIOUS"
 
17
TITLE="
 
18
      plreplot: Replays contents of plot buffer to
 
19
current device/file
 
20
    "
 
21
HREF="plreplot.html"><LINK
 
22
REL="NEXT"
 
23
TITLE="
 
24
      plschr: Set character size
 
25
    "
 
26
HREF="plschr.html"><LINK
 
27
REL="STYLESHEET"
 
28
TYPE="text/css"
 
29
HREF="stylesheet.css"></HEAD
 
30
><BODY
 
31
CLASS="sect1"
 
32
BGCOLOR="#FFFFFF"
 
33
TEXT="#000000"
 
34
LINK="#0000FF"
 
35
VLINK="#840084"
 
36
ALINK="#0000FF"
 
37
><DIV
 
38
CLASS="NAVHEADER"
 
39
><TABLE
 
40
SUMMARY="Header navigation table"
 
41
WIDTH="100%"
 
42
BORDER="0"
 
43
CELLPADDING="0"
 
44
CELLSPACING="0"
 
45
><TR
 
46
><TH
 
47
COLSPAN="3"
 
48
ALIGN="center"
 
49
>The PLplot Plotting Library: Programmer's Reference Manual</TH
 
50
></TR
 
51
><TR
 
52
><TD
 
53
WIDTH="10%"
 
54
ALIGN="left"
 
55
VALIGN="bottom"
 
56
><A
 
57
HREF="plreplot.html"
 
58
ACCESSKEY="P"
 
59
>Prev</A
 
60
></TD
 
61
><TD
 
62
WIDTH="80%"
 
63
ALIGN="center"
 
64
VALIGN="bottom"
 
65
>Chapter 17. The Common API for PLplot</TD
 
66
><TD
 
67
WIDTH="10%"
 
68
ALIGN="right"
 
69
VALIGN="bottom"
 
70
><A
 
71
HREF="plschr.html"
 
72
ACCESSKEY="N"
 
73
>Next</A
 
74
></TD
 
75
></TR
 
76
></TABLE
 
77
><HR
 
78
ALIGN="LEFT"
 
79
WIDTH="100%"></DIV
 
80
><DIV
 
81
CLASS="sect1"
 
82
><H3
 
83
CLASS="sect1"
 
84
><A
 
85
NAME="plrgbhls"
 
86
><CODE
 
87
CLASS="function"
 
88
>plrgbhls</CODE
 
89
>: Convert RGB color to HLS</A
 
90
></H3
 
91
><P
 
92
>      <DIV
 
93
CLASS="funcsynopsis"
 
94
><P
 
95
></P
 
96
><A
 
97
NAME="AEN7425"
 
98
></A
 
99
><TABLE
 
100
CLASS="funcprototype"
 
101
><TR
 
102
><TD
 
103
><CODE
 
104
CLASS="FUNCDEF"
 
105
>           plrgbhls
 
106
        </CODE
 
107
>(r, g, b, p_h, p_l, p_s);</TD
 
108
></TR
 
109
></TABLE
 
110
><P
 
111
></P
 
112
></DIV
 
113
>
 
114
    </P
 
115
><P
 
116
>      Convert RGB color coordinates to HLS
 
117
    </P
 
118
><TABLE
 
119
CLASS="variablelist"
 
120
><TR
 
121
><TD
 
122
><DL
 
123
><DT
 
124
><CODE
 
125
CLASS="parameter"
 
126
>r</CODE
 
127
>
 
128
          (<TT
 
129
CLASS="literal"
 
130
>PLFLT</TT
 
131
>, output)</DT
 
132
><DD
 
133
><P
 
134
>            Red intensity (0.0-1.0) of the colour
 
135
          </P
 
136
></DD
 
137
><DT
 
138
><CODE
 
139
CLASS="parameter"
 
140
>g</CODE
 
141
>
 
142
          (<TT
 
143
CLASS="literal"
 
144
>PLFLT</TT
 
145
>, output)</DT
 
146
><DD
 
147
><P
 
148
>            Green intensity (0.0-1.0) of the colour
 
149
          </P
 
150
></DD
 
151
><DT
 
152
><CODE
 
153
CLASS="parameter"
 
154
>b</CODE
 
155
>
 
156
          (<TT
 
157
CLASS="literal"
 
158
>PLFLT</TT
 
159
>, output)</DT
 
160
><DD
 
161
><P
 
162
>            Blue intensity (0.0-1.0) of the colour
 
163
          </P
 
164
></DD
 
165
><DT
 
166
><CODE
 
167
CLASS="parameter"
 
168
>p_h</CODE
 
169
>
 
170
          (<TT
 
171
CLASS="literal"
 
172
>PLFLT *</TT
 
173
>, input)</DT
 
174
><DD
 
175
><P
 
176
>            Pointer to hue, in degrees on the colour cone (0.0-360.0)
 
177
          </P
 
178
></DD
 
179
><DT
 
180
><CODE
 
181
CLASS="parameter"
 
182
>p_l</CODE
 
183
>
 
184
          (<TT
 
185
CLASS="literal"
 
186
>PLFLT *</TT
 
187
>, input)</DT
 
188
><DD
 
189
><P
 
190
>            Pointer to lightness, expressed as a fraction of the axis of the colour
 
191
            cone (0.0-1.0)
 
192
          </P
 
193
></DD
 
194
><DT
 
195
><CODE
 
196
CLASS="parameter"
 
197
>p_s</CODE
 
198
>
 
199
          (<TT
 
200
CLASS="literal"
 
201
>PLFLT *</TT
 
202
>, input)</DT
 
203
><DD
 
204
><P
 
205
>            Pointer to saturation, expressed as a fraction of the radius of the
 
206
            colour cone (0.0-1.0)
 
207
          </P
 
208
></DD
 
209
></DL
 
210
></TD
 
211
></TR
 
212
></TABLE
 
213
></DIV
 
214
><DIV
 
215
CLASS="NAVFOOTER"
 
216
><HR
 
217
ALIGN="LEFT"
 
218
WIDTH="100%"><TABLE
 
219
SUMMARY="Footer navigation table"
 
220
WIDTH="100%"
 
221
BORDER="0"
 
222
CELLPADDING="0"
 
223
CELLSPACING="0"
 
224
><TR
 
225
><TD
 
226
WIDTH="33%"
 
227
ALIGN="left"
 
228
VALIGN="top"
 
229
><A
 
230
HREF="plreplot.html"
 
231
ACCESSKEY="P"
 
232
>Prev</A
 
233
></TD
 
234
><TD
 
235
WIDTH="34%"
 
236
ALIGN="center"
 
237
VALIGN="top"
 
238
><A
 
239
HREF="index.html"
 
240
ACCESSKEY="H"
 
241
>Home</A
 
242
></TD
 
243
><TD
 
244
WIDTH="33%"
 
245
ALIGN="right"
 
246
VALIGN="top"
 
247
><A
 
248
HREF="plschr.html"
 
249
ACCESSKEY="N"
 
250
>Next</A
 
251
></TD
 
252
></TR
 
253
><TR
 
254
><TD
 
255
WIDTH="33%"
 
256
ALIGN="left"
 
257
VALIGN="top"
 
258
><CODE
 
259
CLASS="function"
 
260
>plreplot</CODE
 
261
>: Replays contents of plot buffer to
 
262
current device/file</TD
 
263
><TD
 
264
WIDTH="34%"
 
265
ALIGN="center"
 
266
VALIGN="top"
 
267
><A
 
268
HREF="api.html"
 
269
ACCESSKEY="U"
 
270
>Up</A
 
271
></TD
 
272
><TD
 
273
WIDTH="33%"
 
274
ALIGN="right"
 
275
VALIGN="top"
 
276
><CODE
 
277
CLASS="function"
 
278
>plschr</CODE
 
279
>: Set character size</TD
 
280
></TR
 
281
></TABLE
 
282
></DIV
 
283
></BODY
 
284
></HTML
 
285
>
 
 
b'\\ No newline at end of file'