Skip to content

Commit

Permalink
visualizer: get rid of debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
iRath96 committed Jul 24, 2020
1 parent 127ec14 commit 3a1c54e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions visualizer/src/main.cpp
Expand Up @@ -176,8 +176,6 @@ class DTree {
for (int i = 0; i < 3; ++i)
blob >> (float&)tmp1;

cout << "hooray" << endl;

if (!blob.isValid()) {
return false;
}
Expand Down Expand Up @@ -583,7 +581,7 @@ class SDTreeVisualizer : public Screen {
>> (size_t&)numNodes
>> (float&)min.x() >> (float&)min.y() >> (float&)min.z()
>> (float&)max.x() >> (float&)max.y() >> (float&)max.z();

struct STreeNode {
bool isLeaf;
shared_ptr<DTree> dTree;
Expand Down

0 comments on commit 3a1c54e

Please sign in to comment.