Skip to content
Snippets Groups Projects
Commit 45a8b924 authored by Andrew Heather's avatar Andrew Heather
Browse files

COMP: mergePoints - corrected erroneous commas

parent 614b33f3
Branches
Tags
No related merge requests found
...@@ -95,8 +95,8 @@ Foam::label Foam::mergePoints ...@@ -95,8 +95,8 @@ Foam::label Foam::mergePoints
sortedTol[sortI] = sortedTol[sortI] =
2*mergeTol* 2*mergeTol*
( (
mag(scalar(pt.x() - compareOrigin.x())), mag(scalar(pt.x() - compareOrigin.x()))
+ mag(scalar(pt.y() - compareOrigin.y())), + mag(scalar(pt.y() - compareOrigin.y()))
+ mag(scalar(pt.z() - compareOrigin.z())) + mag(scalar(pt.z() - compareOrigin.z()))
); );
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment