Skip to content
Snippets Groups Projects
Commit a64c9a1d authored by mattijs's avatar mattijs
Browse files

BUG: treeDataPoint: return selected points

parent 4fa972e4
Branches
Tags
No related merge requests found
......@@ -56,7 +56,14 @@ Foam::treeDataPoint::treeDataPoint
Foam::pointField Foam::treeDataPoint::points() const
{
return points_;
if (pointLabels_.size())
{
return pointField(points_, pointLabels_);
}
else
{
return points_;
}
}
......
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