Revision: | 2.2 |
Committed: | Sat Feb 22 02:07:26 2003 UTC (21 years, 7 months ago) by greg |
Content type: | text/plain |
Branch: | MAIN |
CVS Tags: | rad3R5 |
Changes since 2.1: | +1 -4 lines |
Log Message: | Changes and check-in for 3.5 release Includes new source files and modifications not recorded for many years See ray/doc/notes/ReleaseNotes for notes between 3.1 and 3.5 release |
# | User | Rev | Content |
---|---|---|---|
1 | greg | 1.1 | #ifndef lint |
2 | greg | 2.2 | static const char RCSid[] = "$Id$"; |
3 | greg | 1.1 | #endif |
4 | /* | ||
5 | * Initialize ofun[] list for bounding box checker | ||
6 | */ | ||
7 | |||
8 | #include "standard.h" | ||
9 | |||
10 | #include "octree.h" | ||
11 | |||
12 | #include "otypes.h" | ||
13 | |||
14 | FUN ofun[NUMOTYPE] = INIT_OTYPE; | ||
15 | |||
16 | |||
17 | o_default() /* default action is no intersection */ | ||
18 | { | ||
19 | return(O_MISS); | ||
20 | } |