1 |
– |
/* Copyright (c) 1990 Regents of the University of California */ |
2 |
– |
|
1 |
|
#ifndef lint |
2 |
< |
static char SCCSid[] = "$SunId$ LBL"; |
2 |
> |
static const char RCSid[] = "$Id$"; |
3 |
|
#endif |
6 |
– |
|
4 |
|
/* |
5 |
|
* Initialize ofun[] list for octree generator |
6 |
|
*/ |
15 |
|
extern int o_face(); |
16 |
|
extern int o_cone(); |
17 |
|
extern int o_instance(); |
18 |
+ |
extern int o_mesh(); |
19 |
|
|
20 |
|
FUN ofun[NUMOTYPE] = INIT_OTYPE; |
21 |
|
|
31 |
|
ofun[OBJ_TUBE].funp = |
32 |
|
ofun[OBJ_RING].funp = o_cone; |
33 |
|
ofun[OBJ_INSTANCE].funp = o_instance; |
34 |
+ |
ofun[OBJ_MESH].funp = o_mesh; |
35 |
|
} |
36 |
|
|
37 |
|
|