Set Up Friendly Graph
//// Prepare graph screen to be used in TI-BASIC
StoreGDB 0 // save the current graph screen, user friendly
FnOff // we don't want functions to bloat
PlotsOff // plots too
GridOff // rare but just in case
AxesOff // no axes please :)
// miss here the coordinates setup...
///main code
RecallGDB 0 // restore the graph screen, user friendly
DelVar GDB0 // clean up
//The following code sets up an integer square window with (0,0) in the center:
:ZStandard
:ZInteger
//An integer window with (0,0) in the bottom left corner
:ZStandard
:84→Xmin
:72→Ymax
:ZInteger
//An integer window with (0,0) in the top left corner
:ZStandard
:84→Xmin
:-72→Ymax
:ZInteger
Nothing to comment.
Error Conditions
None known.
Related Routines
.