1PCDLSC(3NCARG) NCAR GRAPHICS PCDLSC(3NCARG)
2
3
4
6 PCDLSC - Defines the default list of "special colors" used by PCHIQU in
7 drawing certain characters from the filled fonts. Calling PCDLSC with
8 the argument IFCI will define color indices IFCI, IFCI+1, IFCI+2, ...,
9 IFCI+15 and it will set all elements of the internal parameter array
10 ´CC´ corresponding to indices 1 through 16. At the moment, although
11 such a call does define a set of sixteen colors (ranging from blue to
12 red) and set the elements of ´CC´, it´s a bit pointless, since there
13 are no characters for which the special colors are used. In the future,
14 there will be a few such (like the state highway symbol, which is
15 normally drawn in a particular pair of colors); at that time, the
16 routine will be of more use.
17
19 CALL PCDLSC (IFCI)
20
22 #include <ncarg/ncargC.h>
23
24 void c_pcdlsc (int ifci)
25
27 IFCI (an input expression of type INTEGER) specifies the first
28 of a set of sixteen color indices that may be defined by
29 PCDLSC. Make sure that these color indices are not already
30 used.
31
33 The C-binding argument descriptions are the same as the FORTRAN
34 argument descriptions.
35
37 This routine allows you to set the current value of Plotchar
38 parameters. For a complete list of parameters available in this
39 utility, see the plotchar_params man page.
40
42 To use PCDLSC or c_pcdlsc, load the NCAR Graphics libraries ncarg,
43 ncarg_gks, and ncarg_c, preferably in that order.
44
46 See the plotchar man page for a description of all Plotchar error
47 messages and/or informational messages.
48
50 Online: plotchar, plotchar_params, pcgetc, pcgeti, pcgetr, pchiqu,
51 pcloqu, pcmequ, pcmpxy, pcpnwi, pcrset, pcsetc, pcseti, pcsetr,
52 ncarg_cbind.
53
54 Hardcopy: NCAR Graphics Fundamentals, UNIX Version
55
57 Copyright (C) 1987-2007
58 University Corporation for Atmospheric Research
59
60 This documentation is free software; you can redistribute it and/or
61 modify it under the terms of the GNU General Public License as
62 published by the Free Software Foundation; either version 2 of the
63 License, or (at your option) any later version.
64
65 This software is distributed in the hope that it will be useful, but
66 WITHOUT ANY WARRANTY; without even the implied warranty of
67 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
68 General Public License for more details.
69
70 You should have received a copy of the GNU General Public License along
71 with this software; if not, write to the Free Software Foundation,
72 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
73
74
75
76UNIX March 1993 PCDLSC(3NCARG)