1
1
Fork 0
mirror of https://github.com/boxgaming/qbjs.git synced 2024-05-12 08:00:12 +00:00
2 G2D.FillRoundRect
boxgaming edited this page 2023-09-29 11:11:40 -05:00

Draws a filled rectangle with rounded corners.

Syntax

G2D.FillRoundRect x&, y&, width&, height&, radius[, clr~&]

Parameters

  • The rectangle will be drawn with its top left corner at the position specified by the x& and y& parameters.
  • The size of the rectangle is defined by the width& and height& parameters.
  • The radius& parameter the amount to which the corners will be rounded.
  • The optional color~& parameter defines the color of the triangle. If not specified, the default color will be used.

Examples

Example1: Draw numerous filled, rounded rectangles of random size at random locations.

Import G2D From "lib/graphics/2d.bas"

Randomize Timer
For i = 0 to 500
    G2D.FillRoundRect Rnd * 640, Rnd * 400, Rnd * 200 + 10, Rnd * 200 + 10, Rnd * 40, Rnd * 14 + 1
    _Limit 200
Next i

See Also

G2D.RoundRect