mirror of
https://github.com/overte-org/overte.git
synced 2025-07-17 03:16:52 +02:00
Remove unused variable
This commit is contained in:
parent
ab95528e25
commit
0b7934a8b3
1 changed files with 0 additions and 3 deletions
|
@ -442,15 +442,12 @@ void OctreeElement::printDebugDetails(const char* label) const {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
QString resultString;
|
|
||||||
qCDebug(octree).noquote() << label
|
qCDebug(octree).noquote() << label
|
||||||
<< QString(" - Voxel at corner=(%1,%2,%3)").arg((double)_cube.getCorner().x, (double)_cube.getCorner().y, (double)_cube.getCorner().z)
|
<< QString(" - Voxel at corner=(%1,%2,%3)").arg((double)_cube.getCorner().x, (double)_cube.getCorner().y, (double)_cube.getCorner().z)
|
||||||
<< "size=" << (double)_cube.getScale()
|
<< "size=" << (double)_cube.getScale()
|
||||||
<< " isLeaf=" << debug::valueOf(isLeaf())
|
<< " isLeaf=" << debug::valueOf(isLeaf())
|
||||||
<< " isDirty=" << debug::valueOf(isDirty())
|
<< " isDirty=" << debug::valueOf(isDirty())
|
||||||
<< " shouldRender=" << debug::valueOf(getShouldRender());
|
<< " shouldRender=" << debug::valueOf(getShouldRender());
|
||||||
|
|
||||||
qCDebug(octree).nospace() << resultString;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
float OctreeElement::getEnclosingRadius() const {
|
float OctreeElement::getEnclosingRadius() const {
|
||||||
|
|
Loading…
Reference in a new issue