--+ Name: DIAMONDS 80 - v.1.0 --+ Type: TI-80 Graphics Program --+ Date: September 29th, 1999 --+ Author: Luis Duarte --+ Ported to TI-80 by Luis Duarte --+ Required: ~300 bytes on calc mem ------------------------------------- *Description: This little program draws diamond, star like images on your calculator screen. It's hard to explain what it looks like, so just run the program and see for yourself :P *Known bugs: none *Version History: v.1.0 - First version of Diamonds 80 *Code: Enter the following code into your TI-80. If you don't know how to, please consult your TI-80 manual. Note: -> is the STO> key Note: the "-1" key, right above the "power of 2" key can be used instead of ^-1 ---- PRGM: DIAMONDS ----- :CLRHOME :DISP "+-+ DIAMONDS +-+" :DISP " BY LUIS DUARTE" :DISP "","","","" :DISP "V.1.0" :PAUSE :ZSTANDARD :10->XSCL :10->YSCL :CLRDRAW :PT-OFF(-1,0) :PT-OFF(-1.3,0) :PT-OFF(1,0) :PT-OFF(1.3,0) :PT-OFF(0,1.3) :PT-OFF(0,1.7) :PT-OFF(0,-1.3) :PT-OFF(0,-1.7) :DRAWF 3X^-1 :DRAWF -3X^-1 :DRAWF 7X^-1 :DRAWF -7X^-1 :DRAWF 11X^-1 :DRAWF -11X^-1 :DRAWF 19X^-1 :DRAWF -19X^-1 :DRAWF 25X^-1 :DRAWF -25X^-1 :DRAWF 35X^-1 :DRAWF -35X^-1 :DRAWF 48X^-1 :DRAWF -48X^-1 :DRAWF 56X^-1 :DRAWF -56X^-1 :DRAWF 68X^-1 :DRAWF -68X^-1 :DRAWF 75X^-1 :DRAWF -75X^-1 :PAUSE :STOP