1TICKS(3NCARG) NCAR GRAPHICS TICKS(3NCARG)
2
3
4
6 TICKS - Allows for program control of tick mark length and direction.
7 This routine has been superseded by TICK4, which should be used
8 instead.
9
11 CALL TICKS(LMJR,LMNR)
12
14 #include <ncarg/ncargC.h>
15
16 void c_ticks (int lmjr, int lmnr)
17
19 LMJR and LMNR
20 See the description in the TICK4 man page.
21
23 The C-binding argument descriptions are the same as the FORTRAN
24 argument descriptions.
25
27 The statement
28
29 CALL TICKS (LMJR,LMNR)
30
31 is equivalent to
32
33 CALL TICK4 (LMJR,LMNR,LMJR,LMNR)
34
36 To use TICKS or c_ticks, load the NCAR Graphics libraries ncarg,
37 ncarg_gks, and ncarg_c, preferably in that order.
38
40 Online: gridall, gridall_params, gacolr, gagetc, gageti, gagetr,
41 gasetc, gaseti, gasetr, grid, gridal, gridl, halfax, labmod, perim,
42 periml, tick4, ncarg_cbind.
43
45 Copyright (C) 1987-2007
46 University Corporation for Atmospheric Research
47
48 This documentation is free software; you can redistribute it and/or
49 modify it under the terms of the GNU General Public License as
50 published by the Free Software Foundation; either version 2 of the
51 License, or (at your option) any later version.
52
53 This software is distributed in the hope that it will be useful, but
54 WITHOUT ANY WARRANTY; without even the implied warranty of
55 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
56 General Public License for more details.
57
58 You should have received a copy of the GNU General Public License along
59 with this software; if not, write to the Free Software Foundation,
60 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
61
62
63
64UNIX March 1993 TICKS(3NCARG)