Salome HOME
Copyright update 2020
[modules/shaper.git] / src / Selector / Selector_NExplode.h
1 // Copyright (C) 2017-2020  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef Selector_NExplode_H_
21 #define Selector_NExplode_H_
22
23 #include "Selector.h"
24
25 #include <TopoDS_Shape.hxx>
26 #include <TopoDS_ListOfShape.hxx>
27
28 /// \class Selector_NExplode
29 /// \ingroup DataModel
30 /// \brief Sort shapes by their centers of mass, using formula X*999 + Y*99 + Z*0.9.
31 /// Algorithm is copied from GEOM module, which uses nexplode Draw command from OCCT.
32 /// Used for getting index of sub0shape in WeakNaming algorithm.
33 class Selector_NExplode
34 {
35  public:
36    /// \brief Initializes the sorted list of shapes by the shapes list.
37    SELECTOR_EXPORT Selector_NExplode(const TopoDS_ListOfShape& theShapes);
38    /// \brief Initializes the sorted list of shapes by the context shape and type of sub-shapes.
39    SELECTOR_EXPORT Selector_NExplode(const TopoDS_Shape& theShape, const TopAbs_ShapeEnum theType);
40
41    /// Returns an index (started from one) of sub-shape in the sorted list. Returns 0 if not found.
42    SELECTOR_EXPORT int index(const TopoDS_Shape& theSubShape);
43    /// Returns a shape by an index (started from one). Returns null if not found.
44    SELECTOR_EXPORT TopoDS_Shape shape(const int theIndex);
45
46 protected:
47   TopoDS_ListOfShape mySorted; ///< keep the ordered list of shapes
48 };
49
50 #endif