SHAPER  9.15.0
Selector_NExplode.h
1 // Copyright (C) 2017-2025 CEA, EDF
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 
27 #include <memory>
28 
30 
37 {
38  public:
40  SELECTOR_EXPORT Selector_NExplode(const TopoDS_ListOfShape& theShapes,
41  const bool theOldOrder = false);
43  SELECTOR_EXPORT Selector_NExplode(const TopoDS_Shape& theShape,
44  const TopAbs_ShapeEnum theType,
45  const bool theOldOrder = false);
46 
48  SELECTOR_EXPORT int index(const TopoDS_Shape& theSubShape);
51  SELECTOR_EXPORT TopoDS_Shape shape(int& theIndex);
52 
53 protected:
54  std::shared_ptr<GeomAlgoAPI_NExplode> mySorted;
56 };
57 
58 #endif
Sort shapes by their centers of mass, using formula X*999 + Y*99 + Z*0.9.
Definition: GeomAlgoAPI_NExplode.h:35
Sort shapes by their centers of mass, using formula X*999 + Y*99 + Z*0.9.
Definition: Selector_NExplode.h:37
TopoDS_Shape shape(int &theIndex)
Returns a shape by an index (started from one).
Definition: Selector_NExplode.cpp:76
Selector_NExplode(const TopoDS_ListOfShape &theShapes, const bool theOldOrder=false)
Initializes the sorted list of shapes by the shapes list.
Definition: Selector_NExplode.cpp:50
std::shared_ptr< GeomAlgoAPI_NExplode > mySorted
keep the ordered list of shapes
Definition: Selector_NExplode.h:54
bool myToBeReordered
the list has to be reordered
Definition: Selector_NExplode.h:55
int index(const TopoDS_Shape &theSubShape)
Returns an index (started from one) of sub-shape in the sorted list. Returns 0 if not found.
Definition: Selector_NExplode.cpp:70