home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / Source / 2DLab / headers.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-01-14  |  414 b   |  23 lines

  1. #include <stdio.h>
  2. #include <math.h>
  3.  
  4. #include "misc.h"
  5. #include "vector.h"
  6. #include "voronoi.h"
  7.  
  8. #ifndef MAX
  9. #define MAX(a,b) ((a)>(b))?(a):(b)
  10. #endif
  11.  
  12. #ifndef FALSE
  13. #define FALSE 0
  14. #endif
  15. #ifndef TRUE
  16. #define TRUE 1
  17. #endif
  18.  
  19. /* prototypes not included in orig voronoi code */
  20. int load_vsites(int,float sites[][2],double,double,double,double);
  21. int find_vregion(int,float pverts[][2]);
  22. int find_dtriangles(TRI **);
  23.