Skip to content
paul59 edited this page Aug 11, 2021 · 14 revisions

rect

rect x y w h color

Parameters

  • x, y : coordinates of the top left corner of the rectangle
  • w : the width the rectangle in pixels
  • h : the height of the rectangle in pixels
  • color : the index of the color in the palette that will be used to fill the rectangle

Description

This function draws a filled rectangle of the desired size and color at the specified position. If you only need to draw the border or outline of a rectangle (ie not filled) see rectb

Example

Example

-- rect demo
x=120
y=68
dx=7
dy=4
col=1

cls()
function TIC()
--Update x/y
 x=x+dx
 y=y+dy
 --Check screen walls
 if x>240-6 or x<0 then
  dx=-dx
  col=col%15+1
 end
 if y>136-6 or y<0 then
  dy=-dy
  col=col%15+1
 end
 --Draw rectangle
 rect (x,y,6,6,col)
end
Clone this wiki locally