Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: draw tutorial?

From: chris:ross-gill at: 13-Sep-2001 18:35

Hi Graham,
> What do I need to change to get my "circles" to draw across > the edges of the grid. The top left hand one is truncated.
How about a transparent box over the top? - Chris -- REBOL [] polished: load-thru/binary http://www.cybarite.com/public/polished.png palms: load-thru/binary http://www.rebol.com/view/palms.jpg view layout [ size 400x400 backtile polished gold image 360x360 palms effect [fit grid 20x20] at 0x0 box 400x400 effect [ draw [ pen 200.0.0 fill-pen black circle 120x120 9 fill-pen white circle 220x220 9 fill-pen black circle 20x20 9 fill-pen white circle 120x140 9 ] ] ]