2012-06-05 18:18:07 +06:00
|
|
|
|
// Copyright (C) 2007-2012 CEA/DEN, EDF R&D, OPEN CASCADE
|
2007-01-22 20:14:44 +05:00
|
|
|
|
//
|
2011-06-06 14:15:39 +06:00
|
|
|
|
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
|
|
|
|
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
|
2007-01-22 20:14:44 +05:00
|
|
|
|
//
|
2011-06-06 14:15:39 +06:00
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
|
// version 2.1 of the License.
|
2007-01-22 20:14:44 +05:00
|
|
|
|
//
|
2011-06-06 14:15:39 +06:00
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
// Lesser General Public License for more details.
|
2007-01-22 20:14:44 +05:00
|
|
|
|
//
|
2011-06-06 14:15:39 +06:00
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2007-01-22 20:14:44 +05:00
|
|
|
|
//
|
2011-06-06 14:15:39 +06:00
|
|
|
|
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
2007-01-22 20:14:44 +05:00
|
|
|
|
//
|
2010-05-14 21:32:37 +06:00
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
// SMESH SMESH_Octree : global Octree implementation
|
2009-04-03 14:54:51 +06:00
|
|
|
|
// File : SMESH_Octree.cxx
|
|
|
|
|
// Created : Tue Jan 16 16:00:00 2007
|
|
|
|
|
// Author : Nicolas Geimer & Aur<75>lien Motteux(OCC)
|
|
|
|
|
// Module : SMESH
|
2010-05-14 21:32:37 +06:00
|
|
|
|
//
|
2007-01-22 20:14:44 +05:00
|
|
|
|
#include "SMESH_Octree.hxx"
|
|
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
|
/*!
|
2009-09-10 11:49:16 +06:00
|
|
|
|
* Constructor. limit must be provided at tree root construction.
|
|
|
|
|
* limit will be deleted by SMESH_Octree.
|
2007-01-22 20:14:44 +05:00
|
|
|
|
*/
|
|
|
|
|
//===========================================================================
|
2009-09-10 11:49:16 +06:00
|
|
|
|
|
|
|
|
|
SMESH_Octree::SMESH_Octree (SMESH_Octree::Limit* limit):
|
|
|
|
|
myChildren(NULL),
|
|
|
|
|
myFather(NULL),
|
|
|
|
|
myIsLeaf( false ),
|
|
|
|
|
myLimit( limit ),
|
|
|
|
|
myLevel(0),
|
|
|
|
|
myBox(NULL)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
|
/*!
|
|
|
|
|
* \brief Compute the Octree
|
|
|
|
|
*/
|
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
|
|
void SMESH_Octree::compute()
|
2007-01-22 20:14:44 +05:00
|
|
|
|
{
|
2009-09-10 11:49:16 +06:00
|
|
|
|
if ( myLevel==0 )
|
|
|
|
|
{
|
|
|
|
|
myBox = buildRootBox();
|
|
|
|
|
if ( myLimit->myMinBoxSize > 0. && maxSize() <= myLimit->myMinBoxSize )
|
|
|
|
|
myIsLeaf = true;
|
|
|
|
|
else
|
|
|
|
|
buildChildren();
|
|
|
|
|
}
|
2007-01-22 20:14:44 +05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//======================================
|
|
|
|
|
/*!
|
|
|
|
|
* \brief SMESH_Octree Destructor
|
|
|
|
|
*/
|
|
|
|
|
//======================================
|
2009-09-10 11:49:16 +06:00
|
|
|
|
|
2007-01-22 20:14:44 +05:00
|
|
|
|
SMESH_Octree::~SMESH_Octree ()
|
|
|
|
|
{
|
|
|
|
|
if(myChildren != NULL)
|
|
|
|
|
{
|
2009-09-10 11:49:16 +06:00
|
|
|
|
if(!isLeaf())
|
2007-01-22 20:14:44 +05:00
|
|
|
|
{
|
|
|
|
|
for(int i = 0; i<8; i++)
|
|
|
|
|
delete myChildren[i];
|
2009-04-03 14:54:51 +06:00
|
|
|
|
delete[] myChildren;
|
2009-09-10 11:49:16 +06:00
|
|
|
|
myChildren = 0;
|
2007-01-22 20:14:44 +05:00
|
|
|
|
}
|
|
|
|
|
}
|
2009-09-10 11:49:16 +06:00
|
|
|
|
if ( myBox )
|
|
|
|
|
delete myBox;
|
|
|
|
|
myBox = 0;
|
|
|
|
|
if ( level() == 0 )
|
|
|
|
|
delete myLimit;
|
|
|
|
|
myLimit = 0;
|
2007-01-22 20:14:44 +05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//=================================================================
|
|
|
|
|
/*!
|
|
|
|
|
* \brief Build the 8 children boxes and call buildChildrenData()
|
|
|
|
|
*/
|
|
|
|
|
//=================================================================
|
2009-09-10 11:49:16 +06:00
|
|
|
|
|
2007-01-22 20:14:44 +05:00
|
|
|
|
void SMESH_Octree::buildChildren()
|
|
|
|
|
{
|
2009-09-10 11:49:16 +06:00
|
|
|
|
if ( isLeaf() ) return;
|
|
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
|
myChildren = new SMESH_Octree*[8];
|
2007-01-22 20:14:44 +05:00
|
|
|
|
|
|
|
|
|
gp_XYZ min = myBox->CornerMin();
|
|
|
|
|
gp_XYZ max = myBox->CornerMax();
|
|
|
|
|
gp_XYZ HSize = (max - min)/2.;
|
|
|
|
|
gp_XYZ mid = min + HSize;
|
|
|
|
|
gp_XYZ childHsize = HSize/2.;
|
|
|
|
|
|
2011-01-31 18:07:07 +05:00
|
|
|
|
// get the whole model size
|
|
|
|
|
double rootSize = 0;
|
|
|
|
|
{
|
|
|
|
|
SMESH_Octree* root = this;
|
|
|
|
|
while ( root->myLevel > 0 )
|
|
|
|
|
root = root->myFather;
|
|
|
|
|
rootSize = root->maxSize();
|
|
|
|
|
}
|
2007-01-22 20:14:44 +05:00
|
|
|
|
Standard_Real XminChild, YminChild, ZminChild;
|
|
|
|
|
gp_XYZ minChild;
|
2009-04-03 14:54:51 +06:00
|
|
|
|
for (int i = 0; i < 8; i++)
|
2007-01-22 20:14:44 +05:00
|
|
|
|
{
|
2009-04-03 14:54:51 +06:00
|
|
|
|
// We build the eight boxes, we need 2 points to do that:
|
|
|
|
|
// Min and Mid
|
2007-01-22 20:14:44 +05:00
|
|
|
|
// In binary, we can write i from 0 to 7
|
|
|
|
|
// For instance :
|
|
|
|
|
// 5 is 101, it corresponds here in coordinates to ZYX
|
|
|
|
|
// If coordinate is 0 in Y-> box from Ymin to Ymid
|
|
|
|
|
// If coordinate is 1 in Y-> box from Ymid to Ymax
|
|
|
|
|
// Same scheme for X and Z
|
|
|
|
|
// I need the minChild to build the Bnd_B3d box.
|
|
|
|
|
|
2009-04-03 14:54:51 +06:00
|
|
|
|
XminChild = (i%2==0)?min.X():mid.X();
|
|
|
|
|
YminChild = ((i%4)/2==0)?min.Y():mid.Y();
|
|
|
|
|
ZminChild = (i<4)?min.Z():mid.Z();
|
2007-01-22 20:14:44 +05:00
|
|
|
|
minChild.SetCoord(XminChild, YminChild, ZminChild);
|
|
|
|
|
|
|
|
|
|
// The child is of the same type than its father (For instance, a SMESH_OctreeNode)
|
2009-04-03 14:54:51 +06:00
|
|
|
|
// We allocate the memory we need for the child
|
2007-01-22 20:14:44 +05:00
|
|
|
|
myChildren[i] = allocateOctreeChild();
|
|
|
|
|
// and we assign to him its box.
|
2009-09-10 11:49:16 +06:00
|
|
|
|
myChildren[i]->myFather = this;
|
|
|
|
|
myChildren[i]->myLimit = myLimit;
|
|
|
|
|
myChildren[i]->myLevel = myLevel + 1;
|
|
|
|
|
myChildren[i]->myBox = new Bnd_B3d(minChild+childHsize,childHsize);
|
2011-01-31 18:07:07 +05:00
|
|
|
|
myChildren[i]->myBox->Enlarge( rootSize * 1e-10 );
|
2009-09-10 11:49:16 +06:00
|
|
|
|
if ( myLimit->myMinBoxSize > 0. && myChildren[i]->maxSize() <= myLimit->myMinBoxSize )
|
|
|
|
|
myChildren[i]->myIsLeaf = true;
|
2007-01-22 20:14:44 +05:00
|
|
|
|
}
|
|
|
|
|
|
2009-09-10 11:49:16 +06:00
|
|
|
|
// After building the 8 boxes, we put the data into the children.
|
2007-01-22 20:14:44 +05:00
|
|
|
|
buildChildrenData();
|
|
|
|
|
|
|
|
|
|
//After we pass to the next level of the Octree
|
2009-09-10 11:49:16 +06:00
|
|
|
|
for (int i = 0; i<8; i++)
|
|
|
|
|
myChildren[i]->buildChildren();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
|
/*!
|
|
|
|
|
* \brief Tell if Octree is a leaf or not
|
|
|
|
|
* An inheriting class can influence it via myIsLeaf protected field
|
|
|
|
|
*/
|
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
|
|
bool SMESH_Octree::isLeaf() const
|
|
|
|
|
{
|
|
|
|
|
return myIsLeaf || ((myLimit->myMaxLevel > 0) ? (level() >= myLimit->myMaxLevel) : false );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
|
/*!
|
|
|
|
|
* \brief Compute the bigger dimension of my box
|
|
|
|
|
*/
|
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
|
|
double SMESH_Octree::maxSize() const
|
|
|
|
|
{
|
|
|
|
|
if ( myBox )
|
|
|
|
|
{
|
|
|
|
|
gp_XYZ min = myBox->CornerMin();
|
|
|
|
|
gp_XYZ max = myBox->CornerMax();
|
|
|
|
|
gp_XYZ Size = (max - min);
|
|
|
|
|
double returnVal = (Size.X()>Size.Y())?Size.X():Size.Y();
|
|
|
|
|
return (returnVal>Size.Z())?returnVal:Size.Z();
|
|
|
|
|
}
|
|
|
|
|
return 0.;
|
2007-01-22 20:14:44 +05:00
|
|
|
|
}
|