1TICK43(3NCARG) NCAR GRAPHICS TICK43(3NCARG)
2
3
4
6 TICK43 - Gives user control of tick mark length in PERIM3.
7
9 CALL TICK43 (MAJORU,MINORU,MAJORV,MINORV,MAJORW,MINORW)
10
12 #include <ncarg/ncargC.h>
13
14 void c_tick43 (int majoru, int minoru, int majorv, int minorv,
15 int majorw, int minorw)
16
18 MAJORU (an input expression of type INTEGER) specifies the length
19 of major ticks to be used on perimeter sides that are
20 parallel to the U axis.
21
22 MINORU (an input expression of type INTEGER) specifies the length
23 of minor ticks to be used on perimeter sides that are
24 parallel to the U axis.
25
26 MAJORV,MINORV
27 (input expressions of type INTEGER) specify the lengths of
28 major and minor ticks for perimeter sides parallel to the V
29 axis.
30
31 MAJORW,MINORW
32 (input expressions of type INTEGER) specify the lengths of
33 major and minor ticks for perimeter sides parallel to the W
34 axis.
35
36 All tick lengths are specified as integers between 0 and 1024. The
37 value "n" produces a tick that is n/1024ths as long as the longest side
38 of the box defined by the arguments UMIN, UMAX, VMIN, VMAX, WMIN, and
39 WMAX in the last call to SET3. The default values are 12 for a major
40 tick and 8 for a minor tick.
41
43 The C-binding argument descriptions are the same as the FORTRAN
44 argument descriptions.
45
47 Use the ncargex command to see the following relevant examples:
48 fthex01, fthex02, fthex03, fthex04, fthex05.
49
51 To use TICK43 or c_tick43, load the NCAR Graphics libraries ncarg,
52 ncarg_gks, and ncarg_c, preferably in that order.
53
55 Online: threed, curve3, fence3, frst3, line3, perim3, point3, psym3,
56 pwrz, pwrzt, set3, threed, tick3, vect3, ncarg_cbind.
57
58 Hardcopy: NCAR Graphics Fundamentals, UNIX Version
59
61 Copyright (C) 1987-2009
62 University Corporation for Atmospheric Research
63 The use of this Software is governed by a License Agreement.
64
65
66
67UNIX March 1993 TICK43(3NCARG)