Code archives/Graphics/DrawLineRect()

This code has been declared by its author to be Public Domain code.

Download source code

DrawLineRect() by drnmr2006
Can't rotate. Does any one know how to either make this into
a module or let it rotate?
Function DrawLineRect(x:Int,y:Int,length:Int,height:Int)
	lowerlefty = y+height
	lowerrightx = x+length
	lowerrighty = y+height
	upperrightx = x+length
	DrawLine x,y,x,lowerlefty
	DrawLine x,lowerlefty,lowerrightx,lowerrighty
	DrawLine lowerrightx,lowerrighty,upperrightx,y
	DrawLine upperrightx,y,x,y
EndFunction

Comments

Oddball2006
Check out my DrawPoly() function. It can easily be used to draw a rectangle, triangle or whatever you need and can also be rotated and scaled the same as the standard functions.


Code Archives Forum