1TICK4(3NCARG) NCAR GRAPHICS TICK4(3NCARG)
2
3
4
6 TICK4 - Allows for program control of tick mark length and direction.
7
9 CALL TICK4 (LMJX, LMNX, LMJY, LMNY)
10
12 #include <ncarg/ncargC.h>
13
14 void c_tick4 (int lmjx, int lmnx, int lmjy, int lmny)
15
17 All arguments are in plotter address units (PAUs). By default, one PAU
18 is 1/1023rd of the width of the plotter frame.
19
20 Note: A call to the SPPS routine SETI will change the definition of a
21 PAU. Such calls are no longer recommended, but the possibility still
22 exists.
23
24 LMJX and LMNX
25 (input expressions of type INTEGER) are the lengths, in
26 plotter address units, of major and minor ticks on the X
27 axis. The default values are 12 and 8.
28
29 LMJY and LMNY
30 (input expressions of type INTEGER) are the lengths, in
31 plotter address units, of major and minor ticks on the Y
32 axis. The default values are 12 and 8.
33
34
35 By default, tick marks point inward. Negative values of LMJX, LMNX,
36 LMJY, and LMNY may be used to create outward-pointing tick marks.
37
39 The C-binding argument descriptions are the same as the FORTRAN
40 argument descriptions.
41
43 This routine allows you to set the current value of Gridall parameters.
44 For a complete list of parameters available in this utility, see the
45 gridall_params man page.
46
48 Use the ncargex command to see the following relevant example: tgrida.
49
51 To use TICK4 or c_tick4, load the NCAR Graphics libraries ncarg,
52 ncarg_gks, and ncarg_c, preferably in that order.
53
55 Online: gridall, gridall_params, gacolr, gagetc, gageti, gagetr,
56 gasetc, gaseti, gasetr, grid, gridal, gridl, halfax, labmod, perim,
57 periml, ticks, ncarg_cbind.
58
59 Hardcopy: NCAR Graphics Fundamentals, UNIX Version
60
62 Copyright (C) 1987-2007
63 University Corporation for Atmospheric Research
64
65 This documentation is free software; you can redistribute it and/or
66 modify it under the terms of the GNU General Public License as
67 published by the Free Software Foundation; either version 2 of the
68 License, or (at your option) any later version.
69
70 This software is distributed in the hope that it will be useful, but
71 WITHOUT ANY WARRANTY; without even the implied warranty of
72 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
73 General Public License for more details.
74
75 You should have received a copy of the GNU General Public License along
76 with this software; if not, write to the Free Software Foundation,
77 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
78
79
80
81UNIX March 1993 TICK4(3NCARG)