mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: NURBS3DVolume was getting a wrong set of points
findPointsInBox was receiving points in the Cartesian system, not local coordinate system
This commit is contained in:
committed by
Andrew Heather
parent
4e4c681c14
commit
c9aec64fb9
@ -1625,7 +1625,10 @@ Foam::tmp<Foam::vectorField> Foam::NURBS3DVolume::getPointsInBox()
|
|||||||
{
|
{
|
||||||
findPointsInBox(localSystemCoordinates_);
|
findPointsInBox(localSystemCoordinates_);
|
||||||
}
|
}
|
||||||
tmp<vectorField> pointsInBox(new vectorField(mesh_.points(), mapPtr_()));
|
tmp<vectorField> pointsInBox
|
||||||
|
(
|
||||||
|
new vectorField(localSystemCoordinates_, mapPtr_())
|
||||||
|
);
|
||||||
|
|
||||||
return pointsInBox;
|
return pointsInBox;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user