Skip to content
Filippo edited this page Feb 6, 2017 · 14 revisions

##rect rect x y w h color

##Parameters:

  • x : x coordinate of the top left corner of the rectangle
  • y : y coordinate of the top left corner of the rectangle
  • w : the width in pixel of the rectangle
  • h : the height in pixel of the rectangle
  • color : the index of the color in the palette that will be used to fill the rectangle area.

##Description: This function draw a colored filled rectangle at the position request. If you need to draw only the border see rectb

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