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