Re: TIB: TIB : Is there Spanish ?


[Prev][Next][Index][Thread]

Re: TIB: TIB : Is there Spanish ?




with the 86, it has a circle drawing function, wit hthe syn something like
circl("xpt","ypt","radius")...hope that helps



where circ is the picture for the object you want.
now if you have an 82/83/85/86 you would have to do something
different.  like

:for(x,1,50
:clrdrw
:pxlon(5,x+1
:pxlon(5,x-1
:pxlon(6,x
:pxlon(4,x
:endfor

you might have to change the pxlon to pton for the 85.  then you would
do,
:for(x,xMin,xMax,(delta-x)
:clrdrw
:pton(0,x+1
:pton(0,x-1
:pton(-1,x
:pton(1,x
:endfor

basically, you just have to reference your picture in relation to a
single point.

hope it helps.

garth