removed unused var
This commit is contained in:
parent
874346d211
commit
48f65697f0
|
@ -168,7 +168,8 @@ namespace vcg {
|
||||||
//first node inserted (no leaf). The others are made by the createTree function (recursively)
|
//first node inserted (no leaf). The others are made by the createTree function (recursively)
|
||||||
mNodes.resize(1);
|
mNodes.resize(1);
|
||||||
mNodes.back().leaf = 0;
|
mNodes.back().leaf = 0;
|
||||||
int numLevel = createTree(0, 0, mPoints.size(), 1, nofPointsPerCell, maxDepth);
|
/*int numLevel = */
|
||||||
|
createTree(0, 0, mPoints.size(), 1, nofPointsPerCell, maxDepth);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename Scalar>
|
template<typename Scalar>
|
||||||
|
|
Loading…
Reference in New Issue