mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev
This commit is contained in:
@ -2525,7 +2525,10 @@ Foam::labelBits Foam::dynamicIndexedOctree<Type>::findNode
|
||||
|
||||
|
||||
template <class Type>
|
||||
Foam::label Foam::dynamicIndexedOctree<Type>::findInside(const point& sample) const
|
||||
Foam::label Foam::dynamicIndexedOctree<Type>::findInside
|
||||
(
|
||||
const point& sample
|
||||
) const
|
||||
{
|
||||
labelBits index = findNode(0, sample);
|
||||
|
||||
@ -2873,7 +2876,8 @@ Foam::label Foam::dynamicIndexedOctree<Type>::removeIndex
|
||||
if (newContent.size() == 0)
|
||||
{
|
||||
// Set to empty.
|
||||
nodes_[nodIndex].subNodes_[octant] = emptyPlusOctant(octant);
|
||||
nodes_[nodIndex].subNodes_[octant]
|
||||
= emptyPlusOctant(octant);
|
||||
}
|
||||
|
||||
contentList.transfer(newContent);
|
||||
@ -3002,7 +3006,8 @@ bool Foam::dynamicIndexedOctree<Type>::write(Ostream& os) const
|
||||
|
||||
|
||||
template <class Type>
|
||||
Foam::Ostream& Foam::operator<<(Ostream& os, const dynamicIndexedOctree<Type>& t)
|
||||
Foam::Ostream&
|
||||
Foam::operator<<(Ostream& os, const dynamicIndexedOctree<Type>& t)
|
||||
{
|
||||
os << t.bb() << token::SPACE << t.nodes() << endl;
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2012 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -150,8 +150,8 @@ public:
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"dynamicTreeDataPoint::intersects(const label, const point&,"
|
||||
"const point&, point&)"
|
||||
"dynamicTreeDataPoint::intersects
|
||||
"(const label, const point&, const point&, point&)"
|
||||
);
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user