/********************************* * * CS 388A Assignment 1 * (John Barron) * * 1999-10-05 * * Dan Fraser, Student 1219229 * * This cute little program allows the user to load * from disk a simple file describing a simple polygon * and mess with the result in some fairly unexciting * ways. * *********************************/ #include "globals.h" int main(int argc, char *argv[]) { /* bulid our matricies (see transform.c) */ SetupTransformations(); /* setup our widgets (see setup_widgets.c) */ setup_widgets(argc, argv); /* and give control to X */ XtMainLoop(); /* if we exit this way, something went seriously wrong. */ return 1; }