X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMESHUtils%2FSMESH_Octree.hxx;h=6013c230a08c8e8a0807c78c5fb1193f8599f19c;hp=35d510bfef92ac9c7391a170f12a95894fe2321f;hb=afb6b35047b55252975cad1be72871038ca01b51;hpb=79c2ca913cedd84dfa84aa672d9acc1b12ad335d diff --git a/src/SMESHUtils/SMESH_Octree.hxx b/src/SMESHUtils/SMESH_Octree.hxx index 35d510bfe..6013c230a 100644 --- a/src/SMESHUtils/SMESH_Octree.hxx +++ b/src/SMESHUtils/SMESH_Octree.hxx @@ -37,9 +37,9 @@ /*! * \brief 3D tree of anything. * Methods to implement in a descendant are: - * - Bnd_B3d* buildRootBox(); // box of the whole tree + * - Bnd_B3d* buildRootBox(); // box of a tree * - descendant* newChild() const; // a new child instance - * - void buildChildrenData(); // Fill in data of the children + * - void buildChildrenData(); // distribute own data among children */ class SMESHUtils_EXPORT SMESH_Octree : public SMESH_Tree< Bnd_B3d, 8 > { @@ -61,6 +61,9 @@ public: // Allocate a bndbox according to childIndex. childIndex is zero based virtual Bnd_B3d* newChildBox(int childIndex) const; + + // Change size of a box by a factor; each dimension changes independently of others + virtual void enlargeByFactor( Bnd_B3d* box, double factor ) const; }; //================================================================================