1GSET_ASFS(3NCARG) NCAR GRAPHICS GSET_ASFS(3NCARG)
2
3
4
6 gset_asfs - (Set aspect source flags) - Sets the aspect source flags
7 that determine whether primitive attributes are to be selected from
8 individual settings or from "bundle tables".
9
11 #include <ncarg/gks.h>
12
13 void gset_asfs(const Gasfs *list_asf);
14
16 list_asf (input) - A structure of settings for the thirteen
17 attributes:
18
19 list_asfs.linetype
20 Linetype
21
22 list_asfs.linewidth
23 Linewidth scale factor
24
25 list_asfs.line_colr_ind
26 Polyline color index
27
28 list_asfs.marker_type
29 Marker type
30
31 list_asfs.marker_size
32 Marker size scale factor
33
34 list_asfs.marker_colr_ind
35 Polymarker color index
36
37 list_asfs.text_font_prec
38 Text font and precision
39
40 list_asfs.char_expan
41 Character expansion factor
42
43 list_asfs.char_space
44 Character spacing
45
46 list_asfs.text_colr_ind
47 Text color index
48
49 list_asfs.fill_int_style
50 Fill area interior style
51
52 list_asfs.fill_style_ind
53 Fill area style index
54
55 list_asfs.fill_colr_ind
56 Fill area color index
57
58 Each value of list_asf is of either GASF_BUNDLED (for "bundled") or
59 GASF_INDIV (for "individual").
60
62 In NCAR Graphics all attribute aspect source flags are defaulted to
63 GASF_INDIV (all values for list_asf are "1"). It is advised that for
64 dependable results when using NCAR Graphics these values remain in
65 their default settings. Some GKS packages default these values to
66 GASF_BUNDLED, so, if one expects to use such a package, it would be
67 precautionary to call gset_asfs to set all aspect source flags to
68 GASF_INDIV before calling other GKS functions.
69
71 To use the GKS C-binding routines, load the ncarg_gks and ncarg_c
72 libraries.
73
75 Online: ginq_asfs(3NCARG), gset_linetype(3NCARG),
76 gset_linewidth(3NCARG), gset_line_colr_ind(3NCARG),
77 gset_marker_type(3NCARG), gset_marker_size(3NCARG),
78 gset_marker_colr_ind(3NCARG), gset_text_font_prec(3NCARG),
79 gset_char_expan(3NCARG), gset_text_font_prec(3NCARG),
80 gset_text_colr_ind(3NCARG), gset_fill_int_style(3NCARG),
81 gset_fill_style_ind(3NCARG), gset_fill_colr_ind(3NCARG), ginq_line‐
82 type(3NCARG), ginq_linewidth(3NCARG), ginq_line_colr_ind(3NCARG),
83 ginq_marker_type(3NCARG), ginq_marker_size(3NCARG),
84 ginq_marker_colr_ind(3NCARG), ginq_text_font_prec(3NCARG),
85 ginq_char_expan(3NCARG), ginq_text_font_prec(3NCARG),
86 ginq_text_colr_ind(3NCARG), ginq_fill_int_style(3NCARG),
87 ginq_fill_style_ind(3NCARG), ginq_fill_colr_ind(3NCARG), gks(3NCARG),
88 ncarg_gks_cbind(3NCARG)
89
90 Hardcopy: User's Guide for NCAR GKS-0A Graphics; NCAR Graphics Funda‐
91 mentals, UNIX Version
92
94 Copyright (C) 1987-2007
95 University Corporation for Atmospheric Research
96
97 This documentation is free software; you can redistribute it and/or
98 modify it under the terms of the GNU General Public License as pub‐
99 lished by the Free Software Foundation; either version 2 of the
100 License, or (at your option) any later version.
101
102 This software is distributed in the hope that it will be useful, but
103 WITHOUT ANY WARRANTY; without even the implied warranty of MER‐
104 CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
105 Public License for more details.
106
107 You should have received a copy of the GNU General Public License along
108 with this software; if not, write to the Free Software Foundation,
109 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
110
111
112
113UNIX March 1993 GSET_ASFS(3NCARG)