1TDSETR(3NCARG) NCAR GRAPHICS TDSETR(3NCARG)
2
3
4
6 TDSETR - Provides a new real value for a Tdpack parameter.
7
9 CALL TDSETR (PNAM,RVAL)
10
12 #include <ncarg/ncargC.h>
13
14 void c_tdsetr (char *pnam, float rval)
15
17 The arguments of TDSETR are as follows:
18
19 PNAM (an input constant or variable of type CHARACTER) - The name of
20 the parameter that you want to set. The character string can be
21 of any length, but only the first three characters of it will
22 be examined.
23
24 RVAL (an input expression of type REAL) - The real value you select
25 for the parameter. If the parameter is of type REAL, it will
26 be given the value RVAL; if is is of type INTEGER, it will be
27 given the value INT(RVAL).
28
30 The C-binding argument descriptions are the same as the FORTRAN
31 argument descriptions.
32
34 This routine allows you to set the current value of Tdpack parameters.
35 For a complete list of parameters available in this utility, see the
36 "tdpack_params" man page.
37
39 To use TDSETR or c_tdsetr, load the NCAR Graphics libraries ncarg,
40 ncarg_gks, and ncarg_c, preferably in that order.
41
43 See the "tdpack" man page for a description of all Tdpack error
44 messages and/or informational messages.
45
47 Online: tdclrs, tdctri, tddtri, tdgeti, tdgetr, tdgrds, tdgrid, tdgtrs,
48 tdinit, tditri, tdlbla, tdlbls, tdline, tdlnpa, tdmtri, tdotri, tdpack,
49 tdpack_params, tdpara, tdplch, tdprpa, tdprpi, tdprpt, tdseti, tdsort,
50 tdstri, tdstrs
51
53 Copyright (C) 1987-2007
54 University Corporation for Atmospheric Research
55
56 This documentation is free software; you can redistribute it and/or
57 modify it under the terms of the GNU General Public License as
58 published by the Free Software Foundation; either version 2 of the
59 License, or (at your option) any later version.
60
61 This software is distributed in the hope that it will be useful, but
62 WITHOUT ANY WARRANTY; without even the implied warranty of
63 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
64 General Public License for more details.
65
66 You should have received a copy of the GNU General Public License along
67 with this software; if not, write to the Free Software Foundation,
68 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
69
70
71
72UNIX July 1997 TDSETR(3NCARG)