1TICK43(3NCARG) NCAR GRAPHICS TICK43(3NCARG)
2
3
4
6 TICK43 - Gives user control of tick mark length in PERIM3.
7
8 NOTE: At one time, the Threed routine TICK3 was used to set tick-mark
9 length. TICK3 has been superseded by TICK43 and is therefore
10 considered obsolete. If you call TICK3, it will call TICK43 for you.
11 The statement
12
13 CALL TICK3 (MAJOR,MINOR)
14
15 should be replaced by the equivalent statement
16
17 CALL TICK43 (MAJOR,MINOR,MAJOR,MINOR,MAJOR,MINOR)
18
20 CALL TICK43 (MAJORU,MINORU,MAJORV,MINORV,MAJORW,MINORW)
21
23 #include <ncarg/ncargC.h>
24
25 void c_tick43 (int majoru, int minoru, int majorv, int minorv,
26 int majorw, int minorw)
27
29 MAJORU (an input expression of type INTEGER) specifies the length
30 of major ticks to be used on perimeter sides that are
31 parallel to the U axis.
32
33 MINORU (an input expression of type INTEGER) specifies the length
34 of minor ticks to be used on perimeter sides that are
35 parallel to the U axis.
36
37 MAJORV,MINORV
38 (input expressions of type INTEGER) specify the lengths of
39 major and minor ticks for perimeter sides parallel to the V
40 axis.
41
42 MAJORW,MINORW
43 (input expressions of type INTEGER) specify the lengths of
44 major and minor ticks for perimeter sides parallel to the W
45 axis.
46
47 All tick lengths are specified as integers between 0 and 1024. The
48 value "n" produces a tick that is n/1024ths as long as the longest side
49 of the box defined by the arguments UMIN, UMAX, VMIN, VMAX, WMIN, and
50 WMAX in the last call to SET3. The default values are 12 for a major
51 tick and 8 for a minor tick.
52
54 The C-binding argument descriptions are the same as the FORTRAN
55 argument descriptions.
56
58 To use TICK43 or c_tick43, load the NCAR Graphics libraries ncarg,
59 ncarg_gks, and ncarg_c, preferably in that order.
60
62 Online: threed, curve3, fence3, frst3, line3, perim3, point3, psym3,
63 pwrz, pwrzt, set3, threed, tick3, vect3, ncarg_cbind.
64
66 Copyright (C) 1987-2009
67 University Corporation for Atmospheric Research
68 The use of this Software is governed by a License Agreement.
69
70
71
72UNIX March 1993 TICK43(3NCARG)