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-2007
57 University Corporation for Atmospheric Research
58
59 This documentation is free software; you can redistribute it and/or
60 modify it under the terms of the GNU General Public License as
61 published by the Free Software Foundation; either version 2 of the
62 License, or (at your option) any later version.
63
64 This software is distributed in the hope that it will be useful, but
65 WITHOUT ANY WARRANTY; without even the implied warranty of
66 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
67 General Public License for more details.
68
69 You should have received a copy of the GNU General Public License along
70 with this software; if not, write to the Free Software Foundation,
71 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
72
73
74
75UNIX July 1997 TDGRID(3NCARG)