Reduce console scroll due to output while clustering.\n

Signed-off-by: James Ketrenos <james_gitlab@ketrenos.com>
This commit is contained in:
James Ketrenos 2020-01-11 16:25:20 -08:00
parent 91357dfb37
commit c9fa513863

View File

@ -198,7 +198,7 @@ long int DBSCAN(Face **ppFaces, long int faceCount, double eps, int minPts) {
freeChain(pSubNeighbors);
pSubNeighbors = RangeQuery(ppFaces, faceCount, pQ, threshold);
neighborCount = chainLength(pSubNeighbors);
fprintf(stderr, "With eps of %f, %ld has %ld neighbors.\n", threshold, pQ->faceId, neighborCount);
fprintf(stderr, "\rWith eps of %f, %ld has %ld neighbors.", threshold, pQ->faceId, neighborCount);
}
if (neighborCount >= minPts) {