1SFSETR(3NCARG) NCAR GRAPHICS SFSETR(3NCARG)
2
3
4
6 SFSETR - Used to set the current real value of a specified internal
7 parameter.
8
10 CALL SFSETR (CNP, RVP)
11
13 #include <ncarg/ncargC.h>
14
15 void c_sfsetr (char *cnp, float rvp)
16
18 CNP (an input expression of type CHARACTER) is one of the
19 character strings 'AN', 'CH', 'DO', 'SP', or 'TY' (or a
20 longer string beginning with one of these strings), meaning
21 "ANgle", "CHaracter", "DOts", "SPacing", and "TYpe",
22 respectively.
23
24 RVP (an input expression of type REAL) is the desired new value
25 of the parameter specified by CNP. This value will be used
26 until the next call resetting it. If the internal
27 parameter is inherently of type INTEGER, the value
28 "INT(RVP)" will be given to it.
29
31 The C-binding argument descriptions are the same as the FORTRAN
32 argument descriptions.
33
35 This routine allows you to set the current value of Softfill
36 parameters. For a complete list of parameters available in this
37 utility, see the softfill_params man page.
38
40 Use the ncargex command to see the following relevant examples:
41 ccpscam, cmptit, agex12, cpex01, cpex02, cpex03, cpex04, cpex05,
42 sfex01, vvex01, tsoftf, fsfwrld.
43
45 To use SFSETR or c_sfsetr, load the NCAR Graphics libraries ncarg,
46 ncarg_gks, and ncarg_c, preferably in that order.
47
49 See the softfill man page for a description of all Softfill error
50 messages and/or informational messages.
51
53 Online: softfill, softfill_params, sfgetc, sfgeti, sfgetp, sfgetr,
54 sfsetc, sfseti, sfsetp, sfsgfa, sfwrld, ncarg_cbind
55
56 Hardcopy: NCAR Graphics Fundamentals, UNIX Version
57
59 Copyright (C) 1987-2007
60 University Corporation for Atmospheric Research
61
62 This documentation is free software; you can redistribute it and/or
63 modify it under the terms of the GNU General Public License as
64 published by the Free Software Foundation; either version 2 of the
65 License, or (at your option) any later version.
66
67 This software is distributed in the hope that it will be useful, but
68 WITHOUT ANY WARRANTY; without even the implied warranty of
69 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
70 General Public License for more details.
71
72 You should have received a copy of the GNU General Public License along
73 with this software; if not, write to the Free Software Foundation,
74 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
75
76
77
78
79UNIX March 1993 SFSETR(3NCARG)