1TDGETR(3NCARG) NCAR GRAPHICS TDGETR(3NCARG)
2
3
4
6 TDGETR - Retrieves the real value of a Tdpack parameter.
7
9 CALL TDGETR (PNAM,RVAL)
10
12 #include <ncarg/ncargC.h>
13
14 void c_tdgetr (char *pnam, float *rval)
15
17 The arguments of TDGETR are as follows:
18
19 PNAM (an input constant or variable of type CHARACTER) - The name of
20 the parameter that you want to retrieve. The character string
21 can be of any length, but only the first three characters of it
22 will be examined.
23
24 RVAL (an output variable of type REAL) - A real variable to receive
25 the desired parameter value. If the internal parameter is of
26 type REAL and has the value "r", RVAL will be given the value
27 "r"; if the internal parameter is of type INTEGER and has the
28 value "i", RVAL will be given the value "REAL(i)".
29
31 The C-binding argument descriptions are the same as the FORTRAN
32 argument descriptions.
33
35 This routine allows you to retrieve the current value of Tdpack
36 parameters. For a complete list of parameters available in this
37 utility, see the "tdpack_params" man page.
38
40 To use TDGETR or c_tdgetr, load the NCAR Graphics libraries ncarg,
41 ncarg_gks, and ncarg_c, preferably in that order.
42
44 See the "tdpack" man page for a description of all Tdpack error
45 messages and/or informational messages.
46
48 Online: tdclrs, tdctri, tddtri, tdgeti, tdgrds, tdgrid, tdgtrs, tdinit,
49 tditri, tdlbla, tdlbls, tdline, tdlnpa, tdmtri, tdotri, tdpack,
50 tdpack_params, tdpara, tdplch, tdprpa, tdprpi, tdprpt, tdseti, tdsetr,
51 tdsort, tdstri, tdstrs
52
54 Copyright (C) 1987-2009
55 University Corporation for Atmospheric Research
56 The use of this Software is governed by a License Agreement.
57
58
59
60UNIX July 1997 TDGETR(3NCARG)