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-2007
47 University Corporation for Atmospheric Research
48
49 This documentation is free software; you can redistribute it and/or
50 modify it under the terms of the GNU General Public License as pub‐
51 lished by the Free Software Foundation; either version 2 of the
52 License, or (at your option) any later version.
53
54 This software is distributed in the hope that it will be useful, but
55 WITHOUT ANY WARRANTY; without even the implied warranty of MER‐
56 CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
57 Public License for more details.
58
59 You should have received a copy of the GNU General Public License along
60 with this software; if not, write to the Free Software Foundation,
61 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
62
63
64
65UNIX March 1993 GSET_CLIP_IND(3NCARG)