0023404: Create SquareConfusion function in Precision package for speed and convenience
[occt.git] / src / BRepFeat / BRepFeat_Gluer.cxx
1 // Created on: 1996-03-08
2 // Created by: Jacques GOUSSARD
3 // Copyright (c) 1996-1999 Matra Datavision
4 // Copyright (c) 1999-2012 OPEN CASCADE SAS
5 //
6 // The content of this file is subject to the Open CASCADE Technology Public
7 // License Version 6.5 (the "License"). You may not use the content of this file
8 // except in compliance with the License. Please obtain a copy of the License
9 // at http://www.opencascade.org and read it completely before using this file.
10 //
11 // The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
12 // main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
13 //
14 // The Original Code and all software distributed under the License is
15 // distributed on an "AS IS" basis, without warranty of any kind, and the
16 // Initial Developer hereby disclaims all such warranties, including without
17 // limitation, any warranties of merchantability, fitness for a particular
18 // purpose or non-infringement. Please see the License for the specific terms
19 // and conditions governing the rights and limitations under the License.
20
21
22
23 #include <BRepFeat_Gluer.ixx>
24 #include <TopoDS.hxx>
25 #include <TopTools_ListOfShape.hxx>
26
27 //=======================================================================
28 //function : Build
29 //purpose  : 
30 //=======================================================================
31
32 void BRepFeat_Gluer::Build()
33 {
34   myGluer.Perform();
35   if (myGluer.IsDone()) {
36     Done();
37     myShape = myGluer.ResultingShape();
38   }
39   else {
40     NotDone();
41   }
42 }
43
44
45
46 //=======================================================================
47 //function : isdeleted
48 //purpose  : 
49 //=======================================================================
50
51 Standard_Boolean BRepFeat_Gluer::IsDeleted
52    (const TopoDS_Shape& F) 
53 {
54   return (myGluer.DescendantFaces(TopoDS::Face(F)).IsEmpty());
55 }
56
57 //=======================================================================
58 //function : Modified
59 //purpose  : 
60 //=======================================================================
61
62 const TopTools_ListOfShape& BRepFeat_Gluer::Modified
63    (const TopoDS_Shape& F)
64 {
65   if (F.ShapeType() == TopAbs_FACE) {
66     const TopTools_ListOfShape& LS = myGluer.DescendantFaces(TopoDS::Face(F));
67     if (!LS.IsEmpty()) {
68       if (!LS.First().IsSame(F))
69         return myGluer.DescendantFaces(TopoDS::Face(F));
70     }
71   }
72   static TopTools_ListOfShape LIM;
73   return  LIM;
74 }
75