--- ray/src/ot/initotypes.c 1991/11/12 17:00:57 2.1 +++ ray/src/ot/initotypes.c 2003/03/11 17:08:55 2.3 @@ -1,9 +1,6 @@ -/* Copyright (c) 1990 Regents of the University of California */ - #ifndef lint -static char SCCSid[] = "$SunId$ LBL"; +static const char RCSid[] = "$Id: initotypes.c,v 2.3 2003/03/11 17:08:55 greg Exp $"; #endif - /* * Initialize ofun[] list for octree generator */ @@ -18,6 +15,7 @@ extern int o_sphere(); extern int o_face(); extern int o_cone(); extern int o_instance(); +extern int o_mesh(); FUN ofun[NUMOTYPE] = INIT_OTYPE; @@ -33,6 +31,7 @@ initotypes() /* initialize ofun array */ ofun[OBJ_TUBE].funp = ofun[OBJ_RING].funp = o_cone; ofun[OBJ_INSTANCE].funp = o_instance; + ofun[OBJ_MESH].funp = o_mesh; }