ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/ot/init2otypes.c
Revision: 1.1
Committed: Wed May 29 17:33:19 1991 UTC (32 years, 11 months ago) by greg
Content type: text/plain
Branch: MAIN
Log Message:
Initial revision

File Contents

# User Rev Content
1 greg 1.1 /* Copyright (c) 1991 Regents of the University of California */
2    
3     #ifndef lint
4     static char SCCSid[] = "$SunId$ 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     }