| Revision: | 1.1 |
| Committed: | Wed May 29 17:33:19 1991 UTC (34 years, 7 months ago) by greg |
| Content type: | text/plain |
| Branch: | MAIN |
| Log Message: | Initial revision |
| # | 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 | } |