remove the childMask member variable VoxelNode

This commit is contained in:
Stephen Birarda 2013-03-28 14:34:10 -07:00
parent f469ec8e2e
commit 1f98929503
2 changed files with 0 additions and 3 deletions

View file

@ -12,8 +12,6 @@
#include "OctalCode.h"
VoxelNode::VoxelNode() {
childMask = 0;
octalCode = NULL;
// default pointers to child nodes to NULL

View file

@ -23,7 +23,6 @@ public:
unsigned char *octalCode;
unsigned char color[4];
VoxelNode *children[8];
unsigned char childMask;
};
#endif /* defined(__hifi__VoxelNode__) */