home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 8 / CDASC08.ISO / NEWS / RADIANCE / SRC / OT / INIT2OTY.C < prev    next >
C/C++ Source or Header  |  1993-10-07  |  409b  |  24 lines

  1. /* Copyright (c) 1991 Regents of the University of California */
  2.  
  3. #ifndef lint
  4. static char SCCSid[] = "@(#)init2otypes.c 2.1 11/12/91 LBL";
  5. #endif
  6.  
  7. /*
  8.  * Initialize ofun[] list for bounding box checker
  9.  */
  10.  
  11. #include  "standard.h"
  12.  
  13. #include  "octree.h"
  14.  
  15. #include  "otypes.h"
  16.  
  17. FUN  ofun[NUMOTYPE] = INIT_OTYPE;
  18.  
  19.  
  20. o_default()            /* default action is no intersection */
  21. {
  22.     return(O_MISS);
  23. }
  24.