1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
.\"##
.\" $XConsortium: p393,v 5.2 94/04/17 20:59:02 rws Exp $
.\"##
.\"##
$XMCOPY
.\"## Copyright (c) 1990, 1991 by Sun Microsystems, Inc.
.\"##
.\"## All Rights Reserved
.\"##
.\"## Permission to use, copy, modify, and distribute this software and its
.\"## documentation for any purpose and without fee is hereby granted,
.\"## provided that the above copyright notice appear in all copies and that
.\"## both that copyright notice and this permission notice appear in
.\"## supporting documentation, and that the name of Sun Microsystems,
.\"## not be used in advertising or publicity
.\"## pertaining to distribution of the software without specific, written
.\"## prior permission.
.\"##
.\"## SUN MICROSYSTEMS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
.\"## INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
.\"## EVENT SHALL SUN MICROSYSTEMS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
.\"## CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
.\"## USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
.\"## OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
.\"## PERFORMANCE OF THIS SOFTWARE.
.TH "TEXT" 3P "29 February 1991"
.SH NAME
TEXT \- create structure element specifying \s-22D\s+2 text primitive
.IX "Primitives, Text Primitives" "TEXT"
.IX "Text Primitives" "TEXT"
.SH SYNOPSIS
.SS C Syntax
.ft B
.ta 1.25i 3i
.nf
void
ptext ( text_pt, text )
Ppoint *text_pt; \fItext point\fP
char *text; \fItext string\fP
.fi
.ft R
.SS Required PHIGS Operating States
(PHOP, *, STOP, *)
.SH DESCRIPTION
.SS Purpose
The \s-2TEXT\s+2 subroutine puts a structure element containing the full
specification of a two-dimensional \s-2TEXT\s+2 primitive into the
currently open structure.
.LP
The \s-2TEXT\s+2 primitive is a character string. The location of the
string in the display is controlled by the \fItext point\fP subroutine parameter,
specified in Modelling Coordinates.
The \fIz\fP coordinate is assumed to be 0.
Aspects of the text display, such as the font, colour, spacing, height,
and alignment, are controlled by the current values of the primitive
attributes listed below.
.LP
If the current edit mode is \s-2INSERT\s+2, the structure element created
by the \s-2TEXT\s+2 subroutine is inserted into the open structure
after the element pointed to by the current \fIelement pointer\fR.
If the current edit mode is \s-2REPLACE\s+2, the new \s-2TEXT\s+2
element replaces the element in the structure pointed to by the \fIelement pointer\fR.
In either case, the \fIelement pointer\fR
is updated to point to the new \s-2TEXT\s+2 element.
.SS C Input Parameters
.IP \fItext_pt\fP
A pointer to a Ppoint structure containing the \fIx\fP and \fIy\fP coordinates
that locate the text string.
The Ppoint structure is defined in phigs.h as follows:
.sp .4
.ta .5i +\w'Pfloat 'u +\w'x; 'u
.nf
typedef struct {
.sp .2
Pfloat x; /* x coordinate */
Pfloat y; /* y coordinate */
.sp .2
} Ppoint;
.fi
.IP \fItext\fP
A pointer to the character string to be written into the display.
.SS Execution
When the structure is traversed, the \s-2TEXT\s+2 element draws the
specified character string.
The position of the text is defined in relation to \fItext point\fP by the
current values of the text primitive attributes \s-2 CHARACTER UP VECTOR, TEXT PATH,\s+2 and \s-2TEXT ALIGNMENT\s+2.
.LP
Other aspects of the appearance of the text are controlled by the
attributes \s-2TEXT FONT, TEXT PRECISION, CHARACTER HEIGHT, CHARACTER
WIDTH, CHARACTER EXPANSION FACTOR, CHARACTER SPACING,\s+2 and \s-2TEXT COLOUR INDEX\s+2.
.LP
The text point is specified in Modelling Coordinates.
The text primitive is subject to the current transformations in the transformation pipeline from the Modelling Coordinate System to the workstation display.
.SS Attributes Applied
The attributes listed below are used to display the
\s-2TEXT\s+2 primitive when the structure is traversed. The Aspect Source
Flags (\s-2ASF\s+2s) tell where to access the output display attributes.
These attributes can come directly from the traversal state list,
or they can be accessed indirectly, using the appropriate index
in the traversal state list and the corresponding bundled
representation in the \s-2PHIGS\s+2 workstation state list.
.RS
.nf
.ta .5i +\w'back interior reflectance equation 'u
.sp
text font text font \s-2ASF\s+2
text precision text precision \s-2ASF\s+2
character expansion factor character expansion factor \s-2ASF\s+2
character spacing character spacing \s-2ASF\s+2
text colour text colour index \s-2ASF\s+2
character height
character up vector
text path
text alignment
text index
depth cue index
name set
.fi
.RE
.sp .2
.SH ERRORS
.IP 005
Ignoring function, function requires state (PHOP, *, STOP, *)
.SH SEE ALSO
.nf
.IP
.ta 0.5i
.SM "INQUIRE TEXT FACILITIES (3P)"
.SM "INQUIRE TEXT EXTENT (3P)"
.SM "TEXT 3 (3P)"
.fi
|