ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/ot/init2otypes.c
Revision: 2.3
Committed: Sat Mar 27 12:41:45 2004 UTC (20 years ago) by schorsch
Content type: text/plain
Branch: MAIN
CVS Tags: rad5R4, rad5R2, rad4R2P2, rad5R0, rad5R1, rad3R7P2, rad3R7P1, rad4R2, rad4R1, rad4R0, rad3R6, rad3R6P1, rad3R8, rad3R9, rad4R2P1, rad5R3, HEAD
Changes since 2.2: +3 -2 lines
Log Message:
Continued ANSIfication. Renamed local initotypes() to ot_initotypes().

File Contents

# Content
1 #ifndef lint
2 static const char RCSid[] = "$Id: init2otypes.c,v 2.2 2003/02/22 02:07:26 greg Exp $";
3 #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 int
18 o_default(void) /* default action is no intersection */
19 {
20 return(O_MISS);
21 }