mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: treeDataPoint: return selected points
This commit is contained in:
@ -55,9 +55,16 @@ Foam::treeDataPoint::treeDataPoint
|
|||||||
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
||||||
|
|
||||||
Foam::pointField Foam::treeDataPoint::points() const
|
Foam::pointField Foam::treeDataPoint::points() const
|
||||||
|
{
|
||||||
|
if (pointLabels_.size())
|
||||||
|
{
|
||||||
|
return pointField(points_, pointLabels_);
|
||||||
|
}
|
||||||
|
else
|
||||||
{
|
{
|
||||||
return points_;
|
return points_;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//- Get type (inside,outside,mixed,unknown) of point w.r.t. surface.
|
//- Get type (inside,outside,mixed,unknown) of point w.r.t. surface.
|
||||||
|
|||||||
Reference in New Issue
Block a user