BUG: indexedOctree : missing access function

This commit is contained in:
mattijs
2010-10-06 12:45:42 +01:00
parent 2b7f905fbd
commit 08a20c5bd1

View File

@ -2794,6 +2794,30 @@ Foam::indexedOctree<Type>::getVolumeType
}
template <class Type>
template <class CompareOp>
void Foam::indexedOctree<Type>::findNear
(
const scalar nearDist,
const indexedOctree<Type>& tree2,
CompareOp& cop
) const
{
findNear
(
nearDist,
true,
*this,
nodePlusOctant(0, 0),
bb(),
tree2,
nodePlusOctant(0, 0),
tree2.bb(),
cop
);
}
// Print contents of nodeI
template <class Type>
void Foam::indexedOctree<Type>::print