From a4b826aa1ea1be2f16e1074ecffc2b92de9aeacd Mon Sep 17 00:00:00 2001 From: Mark Olesen <Mark.Olesen@esi-group.com> Date: Thu, 1 Jun 2017 16:38:48 +0200 Subject: [PATCH] STYLE: fix comments --- .../surface/surfaceFeatureExtract/surfaceFeatureExtract.C | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/applications/utilities/surface/surfaceFeatureExtract/surfaceFeatureExtract.C b/applications/utilities/surface/surfaceFeatureExtract/surfaceFeatureExtract.C index bcf8358a105..7c530d79e2f 100644 --- a/applications/utilities/surface/surfaceFeatureExtract/surfaceFeatureExtract.C +++ b/applications/utilities/surface/surfaceFeatureExtract/surfaceFeatureExtract.C @@ -350,9 +350,6 @@ int main(int argc, char *argv[]) triSurface surf = surfPtr(); - Info<< "NB: Feature line extraction is only valid on closed manifold " - << "surfaces." << nl; - Info<< nl << "Statistics:" << nl; surf.writeStats(Info); @@ -572,7 +569,9 @@ int main(int argc, char *argv[]) triSurfaceSearch query(surf); surfaceIntersection intersect(query, surfaceDict); - // Remove rounding noise - could make adjustable + // Remove rounding noise. For consistency could use 1e-6, + // as per extractFromFile implementation + intersect.mergePoints(10*SMALL); labelPair sizeInfo -- GitLab