PutText "(10,1)", FooBar, 0, "(1,1) to (10,3)"
'let's try to put the text at an off image coordinate
PutText "(0,0)", FooBar, 0, "(1,1) to (10,5)"
'or off the right of the screen
PutText "(75,20)", FooBar, 0, "(1,1) to step (9,2)"
x = 80
PutText
Str$(x
) + ",3", FooBar
, 0, "(1,1) to step (9,2)" x = x - 1
Sub PutText
(dest$
, source
, dest
, source$
)
ParsePutParam dest$, d
ParsePutParam source$, s
For x
= s.x1
To s.x2
'Step Sgn(s.x2 - s.x1) For y
= s.y1
To s.y2
'Step Sgn(s.y2 - s.y1) x1 = d.x1 + x - s.x1: y1 = d.y1 + y - s.y1
Sub ParsePutParam
(param$
, o
As PutType
) strip$ = "() "
o.x2
= o.x1: o.y2
= o.y1: p$
= Mid$(p$
, 5) o.x2 = 0: o.y2 = 0