home *** CD-ROM | disk | FTP | other *** search
- /* tops.c - convert TTDDD file to PostScript viewing format
- * - written by Glenn M. Lewis - 7/22/91
- */
-
- static char rcs_id[] = "$Id: tops.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_PostScript(world, stdout, VIEW_ALL_FOUR);
- exit(0);
- }
-
-