1TDGRID(3NCARG) NCAR GRAPHICS TDGRID(3NCARG)
2
3
4
6 TDGRID - Draw a perimeter, optionally with ticks or grid lines, around
7 the edges of the reference parallelogram defined by the last call to
8 TDPARA. This routine is normally called indirectly (by virtue of a
9 call to TDGRDS), but there is no reason why it should not be called
10 directly.
11
13 CALL TDGRID (XBEG, XSTP, NOXS, YBEG, YSTP, NOYS, IGRD)
14
16 #include <ncarg/ncargC.h>
17
18 void c_tdgrid(float xbeg, float xstp, int noxs, float ybeg, float ystp,
19 int noys, int igrd)
20
22 The arguments of TDGRID are as follows:
23
24 XBEG, XSTP, and NOXS
25 (input expressions of types REAL, REAL, and INTEGER,
26 respectively) - define where ticks or grid lines are to be
27 drawn along the "X" axis of the parallelogram (at XBEG,
28 XBEG+XSTP, XBEG+2*XSTP, ... XBEG+NOXS*XSTP).
29
30 YBEG, YSTP, and NOYS
31 (input expressions of types REAL, REAL, and INTEGER,
32 respectively) - define where ticks or grid lines are to be
33 drawn along the "Y" axis of the parallelogram (at YBEG,
34 YBEG+YSTP, YBEG+2*YSTP, ... YBEG+NOYS*YSTP).
35
36 IGRD (an input expression of type INTEGER) - defines what is to be
37 drawn and has one of the values 1 (draw just a perimeter), 2
38 (draw a perimeter with inward-pointing ticks), or 3 (draw a
39 perimeter with a grid).
40
42 The C-binding argument descriptions are the same as the FORTRAN
43 argument descriptions.
44
46 To use TDGRID or c_tdgrid, load the NCAR Graphics libraries ncarg,
47 ncarg_gks, and ncarg_c, preferably in that order.
48
50 Online: tdclrs, tdctri, tddtri, tdgeti, tdgetr, tdgrds, tdgtrs, tdinit,
51 tditri, tdlbla, tdlbls, tdline, tdlnpa, tdmtri, tdotri, tdpack,
52 tdpack_params, tdpara, tdplch, tdprpa, tdprpi, tdprpt, tdseti, tdsetr,
53 tdsort, tdstri, tdstrs
54
56 Copyright (C) 1987-2009
57 University Corporation for Atmospheric Research
58 The use of this Software is governed by a License Agreement.
59
60
61
62UNIX July 1997 TDGRID(3NCARG)