Moving and rotating texts in GPLOT
(Same features are available also in PS plotting, see PSPLOT?)
[MOVE(x,y)] moves the start of the text by x in X direction and by
in Y direction.
[ROT(angle)] rotates the text by an angle given in degrees.
The following example illustrates the use of these control words:
......................................................
GPLOT Y(X)=X
HEADER=[MOVE(10,-100)],See_what_happens_when_resizing_by_the_mouse!
X=[RED][line_width(5)],-10(10)10
PEN=[MOVE(0,0)][ROT(0)][BLACK][ARIAL(50)]
TEXTS=T1,T2,T3
T1=[ROT(0)],rot(0);_horizontal,100,10
T2=[ROT(90)],rot(90);_90_vertical,30,70
T3=[ROT(45)],rot(45);_in_45_degrees,260,300
MODE=1000,1000 WSIZE=500,500 WHOME=WX-520,WY-560
XDIV=0,1,0 YDIV=0,1,0 FRAME=0 HEADER=0
......................................................