How would you draw a Rounded Rectangle in Rebol and fill it with a gradient color ? Can't find any example.

Thanks.

link|improve this question

74% accept rate
feedback

2 Answers

up vote 3 down vote accepted

You must use DRAW in an effect block for a face:

view layout [
    box effect [ ; default box face size is 100x100
      draw [

        ; information for the next draw element (not required)
        line-width 2.5 ; number of pixels in width of the border
        pen black      ; color of the edge of the next draw element

        ; fill pen is a little complex:
        fill-pen 10x10 0 90 0 1 1 0.0.0 255.0.0 255.0.255

        ; the draw element
        box     ; another box drawn as an effect
          5     ; size of rounding in pixels
          10x10 ; upper left corner
          90x90 ; lower right corner
      ]
    ]
]

To study how to use FILL-PEN with different colors and gradient modes, go to the REBOL desktop under REBOL and Tools and try the Grad Lab. You can experiment with different settings there with visible source code, that you can paste into your own draw blocks.

Hope this helps. :-)

link|improve this answer
feedback

Remember to click the "Local" text in the lower left corner of the desktop, otherwise it will not go online to get the index.r file.

link|improve this answer
I didn't know that : it works now :) – Rebol Tutorial Aug 12 '09 at 21:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.