1ISSETR(3NCARG) NCAR GRAPHICS ISSETR(3NCARG)
2
3
4
6 ISSETR - Resets the current values of internal parameters of type REAL.
7
9 CALL ISSETR (CNP,RVP)
10
12 #include <ncarg/ncargC.h>
13
14 void c_issetr (char *cnp, float rvp)
15
17 CNP (an input expression of type CHARACTER) is the name of an
18 internal parameter. Only the first two characters of the
19 name are meaningful, but a longer character string may be
20 used to more clearly document what internal parameter is
21 being set.
22
23 RVP (an input expression of type REAL) is the desired new value
24 of the parameter specified by CNP. This value will be used
25 until the next call resetting it. If the internal
26 parameter is inherently of type INTEGER, the value
27 "INT(RVP)" will be given to it.
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 Isosurface
35 parameters. For a complete list of parameters available in this
36 utility, see the isosurface_params man page.
37
39 To use ISSETR or c_issetr, load the NCAR Graphics libraries ncarg,
40 ncarg_gks, and ncarg_c, preferably in that order.
41
43 See the isosurface man page for a description of all Isosurface error
44 messages and/or informational messages.
45
47 Online: isosurface, isosurface_params, ezisos, isgeti, isgetr, isosrf,
48 isseti, pwrzi, ncarg_cbind
49
50 Hardcopy: NCAR Graphics Fundamentals, UNIX Version
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 March 1993 ISSETR(3NCARG)