corrected output text from filter

when poisson-disk sampling created a new layer, was reporting the number
of vertices of the SOURCE layer, and not of the newly created one
This commit is contained in:
Marco Callieri 2016-12-21 11:26:17 +01:00
parent 2c08005f3c
commit d4d2e23e1b

View File

@ -937,7 +937,7 @@ bool FilterDocSampling::applyFilter(QAction *action, MeshDocument &md, RichParam
vcg::tri::UpdateBounding<CMeshO>::Box(mm->cm);
Point3i &g=pp.pds.gridSize;
Log("Grid size was %i %i %i (%i allocated on %i)",g[0],g[1],g[2], pp.pds.gridCellNum, g[0]*g[1]*g[2]);
Log("Sampling created a new mesh of %i points",md.mm()->cm.vn);
Log("Sampling created a new mesh of %i points", mm->cm.vn);
}
break;