diff --git a/Converter/src/indexer.cpp b/Converter/src/indexer.cpp index 4e3255f4..22c96583 100644 --- a/Converter/src/indexer.cpp +++ b/Converter/src/indexer.cpp @@ -822,7 +822,7 @@ vector createNodes(vector>& pyramid) { // 4. Recursively repeat at 1. for identified nodes void buildHierarchy(Indexer* indexer, Node* node, shared_ptr points, int64_t numPoints, int64_t depth = 0) { - if (numPoints < maxPointsPerChunk) { + if (numPoints <= maxPointsPerChunk) { Node* realization = node; realization->indexStart = 0; realization->numPoints = numPoints;