home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turbo Toolbox
/
Turbo_Toolbox.iso
/
1991
/
04
/
txl
/
1_preis
/
sinus.txl
< prev
next >
Wrap
Text File
|
1991-01-18
|
596b
|
27 lines
001 cls
005 movewindow (0,0,640,300);
007 typeset (5,22,20,900,0,0,0);
008 locate (130,50);
009 print "Multitasking ade....";
010 locate (0,0);
012 setcolor (4);
013 roundrect (124,85,516,215,40,40);
014 setcolor (1);
015 roundrect (130,90,510,210,40,40);
020 titlewindow "SINUSKURVE";
030 for x=140 to 500 step 5;
040 for y=95 to 205 step 5;
050 setpixel (x,y,3);
060 next
070 next
075 let yalt=0;
080 for x=140 to 500;
090 let y= 150+(sin((x-140)*pi/180)*50);
092 if yalt<>y;
094 setpixel (x,y,14);
100 let yalt=y;
110 next
115 titlewindow
120 typeset
130 end