/* 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);
}

