home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Developer Toolbox 6.1
/
SGI Developer Toolbox 6.1 - Disc 4.iso
/
src
/
swtools
/
trubasic
/
rolldemos
/
demos
/
sci
/
spline.tru
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1994-08-02
|
320 b
|
16 lines
!
! SPLINE. Spline curve through random points.
!
LIBRARY "sglib.trc"
call tw_wset_title(0,"spline")
DIM x(10), y(10)
FOR i = 1 to 10
LET x(i) = i
LET y(i) = Rnd
NEXT i
CALL SetTitle("Spline Curve-Fitting")
CALL DataGraph(x,y,2,0,"yellow yellow white")
CALL AddSplineGraph(x,y,1,"cyan")
get point tmp,tmp2
END