X11 lines
+--------------------+
|CALL IXLINE (N,IXY) |
+--------------------+
Action: Draw a line through all points.
Parameter Description:
- N
- Number of points
- IXY(2,N)
- List of points. This is an INTEGER*2 array.
X11 markers
+----------------------+
| CALL IXMARKE (N,IXY) |
+----------------------+
Action: Draw a marker at each point.
Parameter Description:
- N
- Number of points.
- IXY(2,N)
- List of points (INTEGER*2).
X11 fill area
+----------------------+
| CALL IXFLARE (N,IXY) |
+----------------------+
Action: Fill area described by polygon.
Parameter Description:
- N
- Number of points.
- IXY(2,N)
- List of points (INTEGER*2).
X11 text
+----------------------------------------+
| CALL IXTEXT (MODE,IX,IY,LENTXT,CHTEXT) |
+----------------------------------------+
Action: Draw a text string using the current font.
Parameter Description:
- MODE
- Drawing mode.
- MODE = 0
- The background is not drawn.
- MODE = 1
- The background is drawn.
- IX
- X text position.
- IY
- Y text position.
- LENTXT
- Text length.
- CHTEXT
- Text string.