TGC Codebase Backup



2d rectangle by Harv

13th Feb 2009 19:11
Summary

Function what draws 2d rectangle.



Description



Code
                                    ` This code was downloaded from The Game Creators
                                    ` It is reproduced here with full permission
                                    ` http://www.thegamecreators.com
                                    
                                    function rectangle(left,top,right,bottom)
 line left,top,right,top
 line right,top,right,bottom
 line right,bottom,left,bottom
 line left,bottom,left,top
endfunction