Programming C, C++, Java, PHP, Ruby, Turing, VB
Computer Science Canada 
Programming C, C++, Java, PHP, Ruby, Turing, VB  

Username:   Password: 
 RegisterRegister   
 More Cool Old Dos Made Turing Programs
Index -> Programming, Turing -> Turing Submissions
View previous topic Printable versionDownload TopicRate TopicSubscribe to this topicPrivate MessagesRefresh page View next topic
Author Message
the_short1




PostPosted: 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..



Earth.t
 Description:
very cool animation of the rotation of Earth, and moon, and how the rotated around each other

Download
 Filename:  Earth.t
 Filesize:  2.83 KB
 Downloaded:  312 Time(s)


Dspiral.t
 Description:
sprial drawing thingy...
kinda cool looking

Download
 Filename:  Dspiral.t
 Filesize:  1.15 KB
 Downloaded:  272 Time(s)

Sponsor
Sponsor
Sponsor
sponsor
zylum




PostPosted: Fri Mar 05, 2004 10:15 pm   Post subject: (No 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
jonos




PostPosted: Fri Mar 05, 2004 10:40 pm   Post subject: (No subject)

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




PostPosted: Fri Mar 05, 2004 11:09 pm   Post subject: (No subject)

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




PostPosted: Fri Mar 05, 2004 11:20 pm   Post subject: (No 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!
zylum




PostPosted: Fri Mar 05, 2004 11:58 pm   Post subject: (No subject)

edit: was moved to tutorials section
jonos




PostPosted: Sat Mar 06, 2004 12:13 am   Post subject: (No 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.
recneps




PostPosted: Sat Mar 06, 2004 12:03 pm   Post subject: (No subject)

Thats a sweet spiral thing ;D
Sponsor
Sponsor
Sponsor
sponsor
Display posts from previous:   
   Index -> Programming, Turing -> Turing Submissions
View previous topic Tell A FriendPrintable versionDownload TopicRate TopicSubscribe to this topicPrivate MessagesRefresh page View next topic

Page 1 of 1  [ 8 Posts ]
Jump to:   


Style:  
Search: