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-2009
63 University Corporation for Atmospheric Research
64 The use of this Software is governed by a License Agreement.
65
66
67
68UNIX March 1993 TICK4(3NCARG)