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-2009
54 University Corporation for Atmospheric Research
55 The use of this Software is governed by a License Agreement.
56
57
58
59UNIX March 1993 GSET_FILL_INT_STYLE(3NCARG)