--- ray/src/gen/xform.c 2003/07/27 22:12:02 2.31 +++ ray/src/gen/xform.c 2003/10/27 10:27:25 2.34 @@ -1,5 +1,5 @@ #ifndef lint -static const char RCSid[] = "$Id: xform.c,v 2.31 2003/07/27 22:12:02 schorsch Exp $"; +static const char RCSid[] = "$Id: xform.c,v 2.34 2003/10/27 10:27:25 schorsch Exp $"; #endif /* * xform.c - program to transform object files. @@ -11,8 +11,9 @@ static const char RCSid[] = "$Id: xform.c,v 2.31 2003/ #include -#include "standard.h" #include "platform.h" +#include "rtmath.h" +#include "rtprocess.h" /* win_popen() */ #include "paths.h" #include "object.h" #include "otypes.h" @@ -836,7 +837,8 @@ initotypes() /* initialize ofun[] array */ ofun[OBJ_CYLINDER].funp = ofun[OBJ_TUBE].funp = o_cylinder; ofun[OBJ_RING].funp = o_ring; - ofun[OBJ_INSTANCE].funp = addxform; + ofun[OBJ_INSTANCE].funp = + ofun[OBJ_MESH].funp = addxform; ofun[MAT_GLOW].funp = m_glow; ofun[MAT_SPOT].funp = m_spot; ofun[MAT_DIELECTRIC].funp = m_dielectric;