home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The CDPD Public Domain Collection for CDTV 3
/
CDPDIII.bin
/
pd
/
programming
/
assembler
/
thesource
/
volume4
/
source
/
vectors
/
tdddconv.lha
/
tddd2ray.c
< 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
C/C++ Source or Header
|
1991-11-12
|
338 b
|
19 lines
/* toray.c - convert TTDDD file to Rayshade 4.0 input file
* - written by Glenn M. Lewis - 7/22/91
*/
static char rcs_id[] = "$Id: toray.c,v 1.3 1991/10/10 19:30:24 glewis Exp glewis $";
#include <stdio.h>
#include "ttdddlib.h"
WORLD *world;
main()
{
world = read_World(stdin);
write_Rayshade(world, stdout);
exit(0);
}