1TDLBLS(3NCARG) NCAR GRAPHICS TDLBLS(3NCARG)
2
3
4
6 TDLBLS - Draw labels on selected sides of a projected box. This routine
7 calls TDPARA and will therefore change the definition of the reference
8 parallelogram; it also changes the value of the internal parameter
9 'CS2'.
10
12 CALL TDLBLS (UMIN, VMIN, WMIN, UMAX, VMAX, WMAX, UNLB, VNLB, WNLB,
13 UILB, VILB, WILB, IPCK)
14
16 #include <ncarg/ncargC.h>
17
18 void c_tdlbls(float umin, float vmin, float wmin, float umax, float
19 vmax, float wmax, char* unlb, char* vnlb, char* wnlb, char* uilb, char*
20 vilb, char* wilb, int ipck)
21
23 The arguments of TDLBLS are as follows:
24
25 UMIN, VMIN, WMIN, UMAX, VMAX, WMAX
26 (input expressions of type REAL) - coordinate values defining
27 the box in 3-space. The names of these should make it clear
28 what they are.
29
30 UNLB, VNLB, and WNLB
31 (input, of type CHARACTER) - these strings contain numeric
32 labels to be placed on a U axis, a V axis, and a W axis,
33 respectively. The labels need not be in any particular order,
34 but they have to be separated by blanks and each has to be
35 readable using a FORTRAN format of the form "En.0", where "n"
36 is the length of the label.
37
38 UILB, VILB, and WILB
39 (input, of type CHARACTER) - these strings contain
40 informational labels for a U axis, a V axis, and a W axis,
41 respectively.
42
43 IPCK (an input expression of type INTEGER) - determines which edges
44 of the box are labelled. If IPCK is zero, all six outer edges
45 are labelled, but if IPCK is non-zero, only three edges are
46 labelled, one set of three if IPCK is negative, a different set
47 if IPCK is positive.
48
50 The C-binding argument descriptions are the same as the FORTRAN
51 argument descriptions.
52
54 To use TDLBLS or c_tdlbls, load the NCAR Graphics libraries ncarg,
55 ncarg_gks, and ncarg_c, preferably in that order.
56
58 Online: tdclrs, tdctri, tddtri, tdgeti, tdgetr, tdgrds, tdgrid, tdgtrs,
59 tdinit, tditri, tdlbla, tdline, tdlnpa, tdmtri, tdotri, tdpack,
60 tdpack_params, tdpara, tdplch, tdprpa, tdprpi, tdprpt, tdseti, tdsetr,
61 tdsort, tdstri, tdstrs
62
64 Copyright (C) 1987-2009
65 University Corporation for Atmospheric Research
66 The use of this Software is governed by a License Agreement.
67
68
69
70UNIX July 1997 TDLBLS(3NCARG)