kytschBASIC

Put down that phone!
Please view me on real computer.

BOXF
X1, Y1, X2, Y2
Requires arcade library

The ability to draw a filled box on a bitmap and display it on screen as an image.

Example

INCLUDE arcade
RGB 0,0,0
BITMAP 0,0,640,480
	RGB 255,0,0
	BOXF 200,220,340,340

	RGB 255,0,0,90
	BOXF 240,180,380,300

	RGB 255,0,0,95
	BOXF 280,140,420,260

	RGB 255,0,0,98
	BOXF 320,100,460,220

	RGB 255,0,0,99
	BOXF 360,60,500,180
BITMAP CLOSE

Output

Parameters

Parameter Type Description
X1integerX1 or the start X position
Y1integerY1 or the start Y position
X2integerX2 or the end X position
Y2integerY2 or the end Y position

See also