1GTX(3NCARG) NCAR GRAPHICS GTX(3NCARG)
2
3
4
6 GTX (Text) - The basic output primitive for drawing text. A number of
7 attribute setting routines are available for selecting the size, font,
8 precision, orientation, color, character spacing, etc.
9
11 CALL GTX (X, Y, STRING)
12
14 #include <ncarg/gks.h>
15
16 void gtext(const Gpoint *text_pos, const char *char_string);
17
19 X (Real, Input) - The X world coordinate of the text align‐
20 ment of the first character in STRING.
21
22 Y (Real, Input) - The Y world coordinate of the text align‐
23 ment of the first character in STRING.
24
25 STRING (Character variable, Input) - The characters to be drawn.
26
28 To use GKS routines, load the NCAR GKS-0A library ncarg_gks.
29
31 Online: gstxp, gstxal, gstxfp, gschh, gschsp, gschup, gschxp, gscr,
32 gstxci, gqtxp, gqtxal, gqtxfp, gqchh, gqchsp, gqchup, gqchxp, plotchar,
33 gtext
34
35 Hardcopy: User's Guide for NCAR GKS-0A Graphics; NCAR Graphics Funda‐
36 mentals, UNIX Version
37
39 Copyright (C) 1987-2007
40 University Corporation for Atmospheric Research
41
42 This documentation is free software; you can redistribute it and/or
43 modify it under the terms of the GNU General Public License as pub‐
44 lished by the Free Software Foundation; either version 2 of the
45 License, or (at your option) any later version.
46
47 This software is distributed in the hope that it will be useful, but
48 WITHOUT ANY WARRANTY; without even the implied warranty of MER‐
49 CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
50 Public License for more details.
51
52 You should have received a copy of the GNU General Public License along
53 with this software; if not, write to the Free Software Foundation,
54 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
55
56
57
58UNIX March 1993 GTX(3NCARG)