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

draw tutorial?

 [1/10] from: gchiu:compkarori at: 12-Sep-2001 8:25


On Tue, 11 Sep 2001 07:27:40 -0400 Mike Myers <[cybarite--sympatico--ca]> wrote:
> Refer easy-draw.r at ecotope rebsite > At 11:36 PM 9/11/01 +1200, Graham Chiu wrote: > >Has a decent draw tutorial appeared yet? >
Looking for something more than that ... -- Graham Chiu

 [2/10] from: gchiu:compkarori at: 11-Sep-2001 23:36


Has a decent draw tutorial appeared yet? I'm in need of some enlightenment ... -- Graham Chiu

 [3/10] from: cybarite:sympatico:ca at: 11-Sep-2001 7:27


Refer easy-draw.r at ecotope rebsite At 11:36 PM 9/11/01 +1200, Graham Chiu wrote:

 [4/10] from: allenk:powerup:au at: 13-Sep-2001 6:37


----- Original Message ----- From: "Graham Chiu" <[gchiu--compkarori--co--nz]> To: <[rebol-list--rebol--com]> Sent: Tuesday, September 11, 2001 9:36 PM Subject: [REBOL] draw tutorial?
> Has a decent draw tutorial appeared yet? I'm in need of > some enlightenment ...
Hi Graham, Easy Draw pretty much covers everything. Desktop/Docs. Do you have specific questions for your enlightenment process? Cheers, Allen

 [5/10] from: gchiu:compkarori at: 13-Sep-2001 10:06


On Thu, 13 Sep 2001 06:37:00 +1000 "Allen Kamp" <[allenk--powerup--com--au]> wrote: Hi Allen
> Easy Draw pretty much covers everything. Desktop/Docs. Do > you have specific > questions for your enlightenment process?
Sure. In the pre+post effects example, the box uses the image size. How does one instead scale the image to fit a box size? Also, there is "'difference". Where are these effects documented? Cheers, -- Graham Chiu

 [6/10] from: greggirwin:starband at: 12-Sep-2001 20:58


Hi Graham, << In the pre+post effects example, the box uses the image size. How does one instead scale the image to fit a box size? >> In the effect, use the fit facet. << Also, there is "'difference". Where are these effects documented? >> The View developers guide doc has most of the information, though there are tips and tidbits hidden lots of other places too. --Gregg

 [7/10] from: gchiu:compkarori at: 13-Sep-2001 21:18


quick question: 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. 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 draw [ pen 200.0.0 fill-pen black circle 100x100 9 fill-pen white circle 200x200 9 fill-pen black circle 0x0 9 fill-pen white circle 100x120 9 ] ] ] -- Graham Chiu

 [8/10] from: gchiu:compkarori at: 13-Sep-2001 17:52


On Wed, 12 Sep 2001 20:58:15 -0600 "Gregg Irwin" <[greggirwin--starband--net]> wrote:
> << In the pre+post effects example, the box uses the > image size. How does one instead scale the image to fit > a > box size? >> > > In the effect, use the fit facet. >
Hi Gregg, I tried this previously but I guess I used the wrong syntax. I couldn't get it to fit anywhere :(
> << Also, there is "'difference". Where are these effects > documented? >> > > The View developers guide doc has most of the > information, > though there are tips and tidbits hidden lots of other > places too.
Ah, yes, the documentation ... :( -- Graham Chiu

 [9/10] 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 ] ] ]

 [10/10] from: ammoncooke::yahoo at: 13-Sep-2001 17:36


You might also look at effects.r (Effect Lab) in the tools folder of REBOL.com. (http://www.rebol.com/view/tools/../demos/effect-lab.r) Enjoy!! Ammon