home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / raytrace / radiance / nextrad.lha / NeXtRad / mesh.h < prev    next >
Encoding:
Text File  |  1993-02-22  |  445 b   |  14 lines

  1. /* mesh.h */
  2.  
  3. /* written by : Jason R. Wilson   2/21/93 */
  4.  
  5. /* provides routines for initial mesh-generation and 
  6.     adaptive mesh-generation */
  7.  
  8. void initAdaptiveTol (double tol);
  9.  /* initializes the adaptive tolerence factor */
  10. void SubDivide (ObjectCell *Object,int NumVertices);
  11.   /* subdivides an object */
  12. void SubdivideObjects (ObjectCell *Object,int NumVertices,int NumPolys);
  13.   /* recursively subdivide polygons with high gradients */
  14.