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