1STGETR(3NCARG) NCAR GRAPHICS STGETR(3NCARG)
2
3
4
6 STGETR - Gets the current value of an internal parameter of type REAL.
7
9 CALL STGETR (CNM,RVL)
10
12 #include <ncarg/ncargC.h>
13
14 void c_stgetr(char *cnm, float *rvl)
15
17 CNM (CHARACTER, input) is the name of a parameter whose real
18 value is to be retrieved. Only the first three characters
19 of CNM are examined. The three characters must either be
20 entirely upper or entirely lower case; mixed case is not
21 recognized. It is recommended that the rest of the
22 character string be used to improve the readability of the
23 code. For example, instead of just ´ARL´, use ´ARL -
24 Arrowhead Length´.
25
26 RVL (REAL, output) is a variable in which the value of the
27 parameter specified by CNM is to be returned.
28
30 The C-binding argument descriptions are the same as the FORTRAN
31 argument descriptions.
32
34 This routine allows you to retrieve the current value of Streamlines
35 parameters of type REAL. For a complete list of parameters available in
36 this utility, see the streamlines_params man page.
37
39 To use STGETR or c_stgetr, load the NCAR Graphics libraries ncarg,
40 ncarg_gks, and ncarg_c, preferably in that order.
41
43 See the streamlines man page for a description of all Streamlines error
44 messages and/or informational messages.
45
47 Online: stgetc, stgeti, stinit, stream, streamlines,
48 streamlines_params, strset, stsetc, stseti, stsetr, stuixy, stumsl,
49 stumta, stumxy, ncarg_cbind.
50
51 Hardcopy: NCAR Graphics Fundamentals, UNIX Version
52
54 Copyright (C) 1987-2007
55 University Corporation for Atmospheric Research
56
57 This documentation is free software; you can redistribute it and/or
58 modify it under the terms of the GNU General Public License as
59 published by the Free Software Foundation; either version 2 of the
60 License, or (at your option) any later version.
61
62 This software is distributed in the hope that it will be useful, but
63 WITHOUT ANY WARRANTY; without even the implied warranty of
64 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
65 General Public License for more details.
66
67 You should have received a copy of the GNU General Public License along
68 with this software; if not, write to the Free Software Foundation,
69 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
70
71
72
73UNIX April 1993 STGETR(3NCARG)