1 -- Copyright (C) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE
3 -- Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 -- CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 -- This library is free software; you can redistribute it and/or
7 -- modify it under the terms of the GNU Lesser General Public
8 -- License as published by the Free Software Foundation; either
9 -- version 2.1 of the License.
11 -- This library is distributed in the hope that it will be useful,
12 -- but WITHOUT ANY WARRANTY; without even the implied warranty of
13 -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 -- Lesser General Public License for more details.
16 -- You should have received a copy of the GNU Lesser General Public
17 -- License along with this library; if not, write to the Free Software
18 -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 -- See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 -- File: ModGlue_BuilderArea.cdl
25 -- Author: Peter KURNEV
27 deferred class BuilderArea from GEOMAlgo
28 inherits Algo from GEOMAlgo
30 ---Purpose: The root class for algorithms to build
31 -- faces/solids from set of edges/faces
35 ListOfShape from TopTools,
36 MapOfOrientedShape from TopTools,
37 Context from IntTools,
38 PContext from IntTools
44 ---Purpose: Empty constructor
45 returns BuilderArea from GEOMAlgo;
46 ---C++: alias "Standard_EXPORT virtual ~GEOMAlgo_BuilderArea();"
49 theContext:Context from IntTools);
50 ---Purpose: Sets cashed geometrical tools
53 theLS:ListOfShape from TopTools);
54 ---Purpose: Sets edges/faces to process
57 ---Purpose: Returns edges/faces to process
58 returns ListOfShape from TopTools;
59 ---C++: return const &
62 ---Purpose: Returns wires/shells that have been built
63 returns ListOfShape from TopTools;
64 ---C++: return const &
67 ---Purpose: Returns faces/solids that have been built
68 returns ListOfShape from TopTools;
69 ---C++: return const &
71 PerformShapesToAvoid(me:out)
72 ---Purpose: Collect the edges/faces that
74 -- b) are the same and have different orientation
78 ---Purpose: Build draft faces/shells
79 -- a)myLoops - draft faces/shells that consist of
80 -- boundary edges/faces
81 -- b)myLoopsInternal - draft faces/shells that contains
86 ---Purpose: Build draft faces/solids that contains boundary faces
89 PerformInternalShapes(me:out)
90 ---Purpose: Build finalized faces/solids with internal wires/shells
95 myShapes : ListOfShape from TopTools is protected;
96 myLoops : ListOfShape from TopTools is protected;
97 myLoopsInternal : ListOfShape from TopTools is protected;
98 myShapesToAvoid : MapOfOrientedShape from TopTools is protected;
99 myAreas : ListOfShape from TopTools is protected;
101 myContext : PContext from IntTools is protected;