fix merge issue

This commit is contained in:
ZappoMan 2013-06-07 10:04:30 -07:00
parent 327c41e561
commit 736e38ceb0
2 changed files with 0 additions and 12 deletions

View file

@ -41,8 +41,6 @@ private:
void init(unsigned char * octalCode);
double _lastChanged;
public:
VoxelNode(); // root node constructor
VoxelNode(unsigned char * octalCode); // regular constructor

View file

@ -274,16 +274,6 @@ public:
bool pathChanged;
};
class DeleteVoxelCodeFromTreeArgs {
public:
bool stage;
bool collapseEmptyTrees;
unsigned char* codeBuffer;
int lengthOfCode;
bool deleteLastChild;
bool pathChanged;
};
// Note: uses the codeColorBuffer format, but the color's are ignored, because
// this only finds and deletes the node from the tree.
void VoxelTree::deleteVoxelCodeFromTree(unsigned char* codeBuffer, bool stage, bool collapseEmptyTrees) {