/****************************************************************************** * * 9998sketch/geomio.h * * (c) Eugene K. Ressler, Jr. 2004, 2005 * * A program related to the book * * Fundamentals of Virtual World Simulation * by Eugene K. Ressler, Jr. * * No warranty of correctness or capability of any kind is expressed or implied. * * The author grants free use of this code for any purpose as long any text, * executable program, library file, or source code distributed to others * and employing any portion of this code clearly cites the book named above. * ******************************************************************************/ #ifndef __GEOMIO_H #define __GEOMIO_H #include #include "geometry.h" void print_pt_2d(FILE *f, POINT_2D pt); void print_pt_3d(FILE *f, POINT_3D pt); void print_polyline_3d(FILE *f, POLYLINE_3D *polyline); void print_polygon_2d(FILE *f, POLYGON_2D *polygon); void print_polygon_3d(FILE *f, POLYGON_3D *polygon); void print_plane(FILE *f, PLANE *plane); #endif