Salome HOME
Debug of the selector filter by neighbors and make sketch results stored in the data...
[modules/shaper.git] / src / Selector / Selector_NExplode.h
1 // Copyright (C) 2017  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
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #ifndef Selector_NExplode_H_
22 #define Selector_NExplode_H_
23
24 #include "Selector.h"
25
26 #include <TopoDS_Shape.hxx>
27 #include <TopoDS_ListOfShape.hxx>
28
29 /// \class Selector_NExplode
30 /// \ingroup DataModel
31 /// \brief Sort shapes by their centers of mass, using formula X*999 + Y*99 + Z*0.9.
32 /// Algorithm is copied from GEOM module, which uses nexplode Draw command from OCCT.
33 /// Used for getting index of sub0shape in WeakNaming algorithm.
34 class Selector_NExplode
35 {
36  public:
37    /// \brief Initializes the sorted list of shapes by the context shape and type of sub-shapes.
38    SELECTOR_EXPORT Selector_NExplode(const TopoDS_ListOfShape& theShapes);
39
40    /// Returns an index (started from one) of sub-shape in the sorted list. Returns 0 if not found.
41    SELECTOR_EXPORT int index(const TopoDS_Shape& theSubShape);
42    /// Returns a shape by an index (started from one). Returns null if not found.
43    SELECTOR_EXPORT TopoDS_Shape shape(const int theIndex);
44
45 protected:
46   TopoDS_ListOfShape mySorted; ///< keepthe the ordered list of shapes
47 };
48
49 #endif