Remove unused variable

This commit is contained in:
Dale Glass 2022-06-10 00:47:47 +02:00
parent ab95528e25
commit 0b7934a8b3

View file

@ -442,15 +442,12 @@ void OctreeElement::printDebugDetails(const char* label) const {
}
}
QString resultString;
qCDebug(octree).noquote() << label
<< QString(" - Voxel at corner=(%1,%2,%3)").arg((double)_cube.getCorner().x, (double)_cube.getCorner().y, (double)_cube.getCorner().z)
<< "size=" << (double)_cube.getScale()
<< " isLeaf=" << debug::valueOf(isLeaf())
<< " isDirty=" << debug::valueOf(isDirty())
<< " shouldRender=" << debug::valueOf(getShouldRender());
qCDebug(octree).nospace() << resultString;
}
float OctreeElement::getEnclosingRadius() const {