home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Raytrace & Morphing / SOS-RAYTRACE.ISO / programm / source / radsrc22 / src / ot / init2oty.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-09-11  |  409 b   |  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.