/* Draws figures for the FGC book */ /* Last edited on 2007-12-24 01:13:59 by stolfi */ /* This program draws several figures for the book "Fundemantos de Geometria Computacional" by P.J.Rezende and J.Stolfi (1993). */ /* !!! PUT IN STANDARD FORMAT !!! */ #include #include #include #include #include /* GENERIC PROTOTYPES */ int main(int argc, char **argv); int main(int argc, char **argv) { delvor_draw_all(); vorhaf_draw_all(); linvor_draw_all(); steiner_draw_all(); return 0; }