1GSET_FILL_INT_STYLE(3NCARG) NCAR GRAPHICS GSET_FILL_INT_STYLE(3NCARG)
2
3
4
6 gset_fill_int_style (Set fill area interior style) - sets the fill
7 style of polygons drawn with gfill_area.
8
10 #include <ncarg/gks.h>
11
12 void gset_fill_int_style(Gfill_int_style fill_int_style);
13
15 fill_int_style
16 (Input) - Gives the style of fill to be used in subsequent
17 calls to the gfill_area output primitive. Options are:
18
19 GSTYLE_HOLLOW
20 Hollow fill (the default)
21
22 GSTYLE_SOLID
23 Solid fill
24
25 GSTYLE_PAT
26 Pattern fill (not implemented in NCAR GKS).
27
28 GSTYLE_HATCH
29 Hatch fill
30
32 For fill style "Hatch", gset_fill_style_ind should be used to specify
33 the type of hatch pattern used (horizontal lines, vertical lines, etc.)
34
35 Note: If you call gfill_area and generate an output graphic only to
36 find that you have a closed curve with no fill, you probably have
37 allowed the fill choice to default to hollow fill (no fill).
38
40 To use the GKS C-binding routines, load the ncarg_gks and ncarg_c
41 libraries.
42
44 Online: gfill_area(3NCARG), gset_fill_style_ind(3NCARG),
45 gset_colr_rep(3NCARG), gset_fill_colr_ind(3NCARG),
46 ginq_fill_int_style(3NCARG), ginq_fill_style_ind(3NCARG),
47 areas(3NCARG), gks(3NCARG), ncarg_gks_cbind(3NCARG)
48
49 Hardcopy: User's Guide for NCAR GKS-0A Graphics; NCAR Graphics Funda‐
50 mentals, 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 pub‐
58 lished 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 MER‐
63 CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
64 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 GSET_FILL_INT_STYLE(3NCARG)