1GSET_CLIP_IND(3NCARG) NCAR GRAPHICS GSET_CLIP_IND(3NCARG)
2
3
4
6 gset_clip_ind (Set clipping indicator) - controls whether data are dis‐
7 played outside the boundaries of the world coordinate window of the
8 current normalization transformation.
9
11 #include <ncarg/gks.h>
12
13 void gset_clip_ind(Gclip_ind clip_ind);
14
16 clip_ind (Input) - A flag to turn clipping on or off.
17
18 GIND_NO_CLIP
19 Clipping is off. Data outside of the window will be
20 plotted.
21
22 GIND_CLIP
23 Clipping is on. Data outside of the window will not
24 be plotted. This is the default.
25
27 If the clipping indicator is off, and you make GKS output calls to plot
28 world coordinate data outside your defined world coordinate window (and
29 your viewport is smaller than the full plotting surface), those data
30 will appear with your plot. If the clipping indicator is on, the data
31 will be clipped to fit your window.
32
34 To use the GKS C-binding routines, load the ncarg_gks and ncarg_c
35 libraries.
36
38 Online: set(3NCARG), gsup(3NCARG), gset_win(3NCARG),
39 gsel_norm_tran(3NCARG), ginq_clip(3NCARG), gks(3NCARG),
40 ncarg_gks_cbind(3NCARG)
41
42 Hardcopy: User's Guide for NCAR GKS-0A Graphics; NCAR Graphics Funda‐
43 mentals, UNIX Version
44
46 Copyright (C) 1987-2009
47 University Corporation for Atmospheric Research
48 The use of this Software is governed by a License Agreement.
49
50
51
52UNIX March 1993 GSET_CLIP_IND(3NCARG)