1GQCLIP(3NCARG) NCAR GRAPHICS GQCLIP(3NCARG)
2
3
4
6 GQCLIP (Inquire clipping indicator) - retrieves the current value of
7 the clipping indicator as well as the current clipping rectangle.
8
10 CALL GQCLIP (ERRIND, ICLIP, CLRECT)
11
13 #include <ncarg/gks.h>
14
15 void ginq_clip(Gint *err_ind, Gclip *clip_ind_rect);
16
18 ERRIND (Integer, Output) - If the inquired values cannot be
19 returned correctly, a non-zero error indicator is returned
20 in ERRIND, otherwise a zero is returned. Consult "User's
21 Guide for NCAR GKS-0A Graphics" for a description of the
22 meaning of the error indicators.
23
24 ICLIP (Integer, Output) - Returns the current value of the clip‐
25 ping indicator as set by default or by a call to GSCLIP.
26
27 0 Clipping is off, or deactivated.
28
29 1 Clipping is on. Data outside of the world coordinate
30 window will not be plotted.
31
32 CLRECT (Real, Array(4)) - Four normalized device coordinates pro‐
33 viding the corner points of the current clipping rectangle
34 in the order XMIN, XMAX, YMIN, YMAX.
35
37 To use GKS routines, load the NCAR GKS-0A library ncarg_gks.
38
40 Online: set, gsclip, gswn, gselnt, ginq_clip
41
42 Hardcopy: "User's Guide for NCAR GKS-0A Graphics"
43
45 Copyright (C) 1987-2009
46 University Corporation for Atmospheric Research
47 The use of this Software is governed by a License Agreement.
48
49
50
51UNIX March 1993 GQCLIP(3NCARG)