Bugfix in shared point detection (not all problems resolved, yet)
This commit is contained in:
parent
05e7057e4d
commit
ef1c4242c1
1 changed files with 2 additions and 2 deletions
|
@ -318,7 +318,7 @@ void Foam::sharedPoints::calcSharedPoints()
|
|||
|
||||
forAll (curMarkedPoints, pointI)
|
||||
{
|
||||
if (curMarkedPoints[pointI] > 2)
|
||||
if (curMarkedPoints[pointI] > 1)
|
||||
{
|
||||
nShared++;
|
||||
}
|
||||
|
@ -332,7 +332,7 @@ void Foam::sharedPoints::calcSharedPoints()
|
|||
|
||||
forAll (curMarkedPoints, pointI)
|
||||
{
|
||||
if (curMarkedPoints[pointI] > 2)
|
||||
if (curMarkedPoints[pointI] > 1)
|
||||
{
|
||||
curShared[nShared] = pointI;
|
||||
nShared++;
|
||||
|
|
Reference in a new issue