如何在 Rebol 中绘制并填充圆角矩形

发布于 2024-07-30 02:26:46 字数 60 浏览 4 评论 0原文

如何在 Rebol 中绘制圆角矩形并用渐变颜色填充它? 找不到任何例子。

谢谢。

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

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我恋#小黄人 2024-08-06 02:26:46

您必须在脸部效果块中使用 DRAW:

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
      ]
    ]
]

要研究如何使用具有不同颜色和渐变模式的 FILL-PEN,请转到 REBOL 和工具下的 REBOL 桌面并尝试 Grad Lab。 您可以使用可见的源代码尝试不同的设置,然后将其粘贴到您自己的绘图块中。

希望这可以帮助。 :-)

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. :-)

终陌 2024-08-06 02:26:46

记得点击桌面左下角的“本地”文字,否则无法上网获取index.r文件。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文