1ISGETR(3NCARG) NCAR GRAPHICS ISGETR(3NCARG)
2
3
4
6 ISGETR - Gets the current values of internal parameters of type REAL.
7
9 CALL ISGETR (CNP,RVP)
10
12 #include <ncarg/ncargC.h>
13
14 void c_isgetr (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 retrieved.
22
23 RVP (an output variable of type REAL) is the name of a variable
24 into which the value of the parameter specified by CNP is
25 to be retrieved. If the internal parameter is inherently
26 an integer value "i", "REAL(i)" will be returned as the
27 value of RVP.
28
30 This routine allows you to retrieve the current value of Isosurface
31 parameters. For a complete list of parameters available in this
32 utility, see the isosurface_params man page.
33
35 The C-binding argument descriptions are the same as the FORTRAN
36 argument descriptions.
37
39 To use ISGETR or c_isgetr, 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, isosrf, isseti,
48 issetr, 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 ISGETR(3NCARG)