[futurebasic] Re: [FB] moving the origin

Message: < previous - next > : Reply : Subscribe : Cleanse
Home   : March 2002 : Group Archive : Group : All Groups

From: Robert Covington <artlythere@...>
Date: Mon, 25 Mar 2002 21:27:47 -0500
>I need a statement that can moves the origin to (100,100) and when I
>want to draw the circle <<CIRCLE 0,0,70>>, in the middle of the window,
>in clockwise, not in a trigonometric one, not only a quarter of it.

mx = Window(_width)/2
my = Window(_height)/2

Circle(mx,my,70)

?

rc