Salome HOME
Merging with WPdev
[modules/geom.git] / src / GEOMAlgo / GEOMAlgo_Builder_0.cxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 //
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License.
8 //
9 // This library is distributed in the hope that it will be useful
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19
20 #include <GEOMAlgo_Builder.hxx>
21
22 #include <NMTDS_ShapesDataStructure.hxx>
23 #include <NMTTools_DSFiller.hxx>
24 #include <NMTTools_PaveFiller.hxx>
25 #include <IntTools_Context.hxx>
26 #include <TopoDS_Shape.hxx>
27 #include <BOPTools_ListIteratorOfListOfPaveBlock.hxx>
28 #include <TopTools_MapOfShape.hxx>
29 #include <TopTools_ListOfShape.hxx>
30 #include <BOPTools_ListOfPaveBlock.hxx>
31 #include <BOPTools_PaveBlock.hxx>
32
33 //=======================================================================
34 //function : Shapes1
35 //purpose  : 
36 //=======================================================================
37   const TopTools_ListOfShape& GEOMAlgo_Builder::Shapes1(const Standard_Integer theType)const
38 {
39   return myShapes1[theType];
40 }
41 //=======================================================================
42 //function : Images
43 //purpose  : 
44 //=======================================================================
45   const BRepAlgo_Image& GEOMAlgo_Builder::Images()const
46 {
47   return myImages;
48 }
49 //=======================================================================
50 //function : InParts
51 //purpose  : 
52 //=======================================================================
53   const TopTools_ListOfShape& GEOMAlgo_Builder::InParts(const TopoDS_Shape& theS)const
54 {
55   static TopTools_ListOfShape sLS;
56   //
57   if (myInParts.Contains(theS)) {
58     return myInParts.FindFromKey(theS);
59   }
60   return sLS;
61 }