--- ray/src/common/octree.h 2003/06/06 16:38:47 2.9 +++ ray/src/common/octree.h 2005/09/23 19:04:52 2.11 @@ -1,4 +1,4 @@ -/* RCSid $Id: octree.h,v 2.9 2003/06/06 16:38:47 schorsch Exp $ */ +/* RCSid $Id: octree.h,v 2.11 2005/09/23 19:04:52 greg Exp $ */ /* * octree.h - header file for routines using octrees. */ @@ -8,8 +8,6 @@ extern "C" { #endif -#include "copyright.h" - /* * An octree is expressed as an integer which is either * an index to eight other nodes, the empty tree, or an index @@ -55,9 +53,9 @@ extern OCTREE *octblock[MAXOBLK]; /* octree blocks */ */ typedef struct { - OCTREE cutree; /* the octree for this cube */ FVECT cuorg; /* the cube origin */ double cusize; /* the cube size */ + OCTREE cutree; /* the octree for this cube */ } CUBE; extern CUBE thescene; /* the main scene */