mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: cut/paste error in searchableExtrudedCircle
- use vector::removeCollinear a few places COMP: incorrect initialization order in edgeFaceCirculator COMP: Silence boost bind deprecation warnings (before CGAL-5.2.1)
This commit is contained in:
@ -382,7 +382,7 @@ void Foam::edgeInterpolation::makeDeltaCoeffs() const
|
||||
faceCentres[neighbour[edgeI]]
|
||||
- faceCentres[owner[edgeI]];
|
||||
|
||||
unitDelta -= edgeNormal*(edgeNormal & unitDelta);
|
||||
unitDelta.removeCollinear(edgeNormal);
|
||||
unitDelta.normalise();
|
||||
|
||||
|
||||
@ -482,7 +482,7 @@ void Foam::edgeInterpolation::makeCorrectionVectors() const
|
||||
faceCentres[neighbour[edgeI]]
|
||||
- faceCentres[owner[edgeI]];
|
||||
|
||||
unitDelta -= edgeNormal*(edgeNormal & unitDelta);
|
||||
unitDelta.removeCollinear(edgeNormal);
|
||||
unitDelta.normalise();
|
||||
|
||||
// Edge normal - area tangent
|
||||
|
||||
Reference in New Issue
Block a user