Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Force 4.0 Reference - growbox() draw a zooming box http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 growbox()           Draw a zooming box
------------------------------------------------------------------------------
 Declaration
   screen.hdr

 Syntax
   proc growbox extern
   param value uint uTop, ;
         value uint uLeft, ;
         value uint uBottom, ;
         value uint uRight

 Arguments
   iTop is the top row of the box.

   iLeft is the leftmost column of the box.

   iBottom is the bottom row of the box.

   iRight is the rightmost column of the box.

 Return
   None.

 Description
   This procedure draws a "zooming" box on the screen with the final
   coordinates specified using the BOX_DOUBLE semi-graphic characters.
   Because this routine internally uses loops to create the necessary
   delays, the zoom speed depends on the speed of the computer system. Use
   zoombox() if you want a zoom effect which is almost independent from the
   CPU speed.

 Example
   #define EXAMPLE_SCREEN
   #include example.hdr

   proc Test_growbox
   growbox( 10, 20, 20, 60 )
   endproc

   proc main
   Test_growbox()
   endproc

See Also: @ to box() box3d() fill() popbox() zoombox()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson