home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Encyclopedia of Graphics File Formats Companion
/
GFF_CD.ISO
/
formats
/
ttddd
/
spec
/
t3d_doc
/
igensurf.zoo
/
examples
/
spiral2.cal
< prev
next >
Wrap
Text File
|
1991-09-27
|
300b
|
16 lines
{
spiral2.cal: Create a spiral
igensurf -v -s 20 -t 10 spiral2.cal | writetddd >spiral2.obj
}
#name spiral2
#scale 100
height : 5; { Height of spiral }
n_turns : 3; { Number of turns }
x(s,t) = t * cos(n_turns * 2 * PI * s);
y(s,t) = t * sin(n_turns * 2 * PI * s);
z(s,t) = height * s;