Computer Science Canada

More Cool Old Dos Made Turing Programs

Author:  the_short1 [ Fri Mar 05, 2004 10:11 pm ]
Post subject:  More Cool Old Dos Made Turing Programs

instead of posting each program seperate like i was doing for julia sets and smile animation, i will post more programs that i fix to work on Windows versions of turing and post here:

All these programs are NOT mine, they are either an unknown author whoj had them in his turing folder, or Tom West demoes from way back when, turing was in DOS... i downloaded an OLD version a while back, and a bunch of programs were in there... so i grabed them, but then i got the new turing verison from School...so i ditched it...

2 more cool ones that i found are
Double Spiral... creats a cool double little spiral

Earth: shows the rotation of eath around the sun, and the rotation of the moon around the earth... very well done..

Author:  zylum [ Fri Mar 05, 2004 10:15 pm ]
Post subject: 

heres a spiral type program i made a while back:

code:

var x : int
var y : int
var num : real := 0.1
var diam : real := 200
const cx := 300
const cy := 200
const twist := .9
loop
    x := round (sin (num) * diam + cx)
    y := round (cos (num) * diam + cy)
    drawdot (x, y, 7)
    delay (1)
    num += twist
    diam -= 0.05
    exit when diam < 0
end loop

Author:  jonos [ Fri Mar 05, 2004 10:40 pm ]
Post subject: 

that's some really neat stuff zylum, i wish i new trig!!!! or whatever the cos and sin is...

Author:  zylum [ Fri Mar 05, 2004 11:09 pm ]
Post subject: 

thanks! it's actually pretty easy. maybe i'll make a basic tutorial soon...

Author:  jonos [ Fri Mar 05, 2004 11:20 pm ]
Post subject: 

that would be awesome!!! i think cervantes was expressing some interest in that at some time too though i forget. then us you haven't made it to that in math yet can understand a lot of the code we see. thanks!

Author:  zylum [ Fri Mar 05, 2004 11:58 pm ]
Post subject: 

edit: was moved to tutorials section

Author:  jonos [ Sat Mar 06, 2004 12:13 am ]
Post subject: 

wow thanks, really helpful. to move it you an just copy and paste it then edit this post and delete it and say something related to the above and then you are homefree.

Author:  recneps [ Sat Mar 06, 2004 12:03 pm ]
Post subject: 

Thats a sweet spiral thing ;D


: