1CPBACK(3NCARG) NCAR GRAPHICS CPBACK(3NCARG)
2
3
4
6 CPBACK - Draws a background for a contour plot.
7
9 CALL CPBACK (ZDAT, RWRK, IWRK)
10
12 #include <ncarg/ncargC.h>
13
14 void c_cpback (float *zdat, float *rwrk, int *iwrk)
15
17 All three arguments are arrays used in the last call to CPRECT, CPSPS1,
18 or CPSPS2, the contents of which must not have been changed since that
19 call.
20
21 ZDAT (REAL array, dimensioned as specified in the last call to
22 CPRECT, CPSPS1, or CPSPS2, input) is the data array.
23
24 RWRK (REAL array, dimensioned as specified in the last call to
25 CPRECT, CPSPS1, or CPSPS2, input/output) is the real
26 workspace array.
27
28 IWRK (INTEGER array, dimensioned as specified in the last call
29 to CPRECT, CPSPS1, or CPSPS2, input/output) is the integer
30 workspace array.
31
33 The C-binding argument descriptions are the same as the FORTRAN
34 argument descriptions.
35
37 You can call CPBACK at any time after the initialization call to
38 CPRECT, CPSPS1, or CPSPS2. What CPBACK does depends on the value of
39 the internal parameter 'MAP':
40
41 · If 'MAP' is set to zero, CPBACK draws the perimeter of the
42 current viewport by calling PERIM, in the utility Gridall,
43 requesting 'ZDM'-1 major ticks on the horizontal sides of the
44 perimeter and 'ZDN'-1 major ticks on the vertical sides. No
45 minor ticks are drawn.
46
47 · If 'MAP' is set non-zero, CPBACK does nothing.
48
50 Use the ncargex command to see the following relevant examples:
51 ccpback, ccpcff, ccpcfx, ccpcis, ccpcit, ccpclc, ccpcld, ccpcldm,
52 ccpcll, ccpclu, ccpdflt, ccpfil, ccphand, ccphcf, ccphl, ccphlt,
53 ccpila, ccpils, ccpilt, ccpklb, ccplbam, ccplbdr, ccpline, ccpllb,
54 ccpllc, ccplll, ccpllo, ccpllp, ccpllt, ccpllw, ccpncls, ccpnet,
55 ccpnof, ccpnsd, ccppc, ccppc1, ccppc2, ccppc3, ccppc4, ccppkcl, ccprc,
56 ccprect, ccprwc, ccprwu, ccpscam, ccpset, ccpsps1, ccpsps2, ccpspv,
57 ccptitle, ccpvp, cidsfft, cpex01, fsfsgfa.
58
60 To use CPBACK or c_cpback, load the NCAR Graphics libraries ncarg,
61 ncarg_gks, and ncarg_c, preferably in that order.
62
64 See the conpack man page for a description of all Conpack error
65 messages and/or informational messages.
66
68 Online: conpack, cpchcf, cpchcl, cpchhl, cpchil, cpchll, cpcica,
69 cpclam, cpcldm, cpcldr, cpcltr, cpcnrc, cpdrpl, cpezct, cpgetc, cpgeti,
70 cpgetr, cplbam, cplbdr, cpmpxy, cpmviw, cpmvrw, cppkcl, cppklb, cprect,
71 cprset, cpscae, cpsetc, cpseti, cpsetr, cpsps1, cpsps2, ncarg_cbind
72
73 Hardcopy: NCAR Graphics Contouring and Mapping Tutorial
74
76 Copyright (C) 1987-2007
77 University Corporation for Atmospheric Research
78
79 This documentation is free software; you can redistribute it and/or
80 modify it under the terms of the GNU General Public License as
81 published by the Free Software Foundation; either version 2 of the
82 License, or (at your option) any later version.
83
84 This software is distributed in the hope that it will be useful, but
85 WITHOUT ANY WARRANTY; without even the implied warranty of
86 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
87 General Public License for more details.
88
89 You should have received a copy of the GNU General Public License along
90 with this software; if not, write to the Free Software Foundation,
91 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
92
93
94
95
96UNIX March 1993 CPBACK(3NCARG)