0031642: Visualization - crash in Graphic3d_Structure::SetVisual() on redisplaying...
[occt.git] / src / TopOpeBRepBuild / TopOpeBRepBuild_FuseFace.lxx
1 // Created on: 1998-07-30
2 // Created by: LECLERE Florence
3 // Copyright (c) 1998-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 #include <StdFail_NotDone.hxx>
18
19 //=======================================================================
20 //function : TopOpeBRepBuild_FuseFace
21 //purpose  : 
22 //=======================================================================
23
24 inline TopOpeBRepBuild_FuseFace::TopOpeBRepBuild_FuseFace () : 
25       myInternal(Standard_False), 
26       myModified(Standard_False),
27       myDone(Standard_False)
28 {}
29
30
31 //=======================================================================
32 //function : TopOpeBRepBuild_FuseFace
33 //purpose  : 
34 //=======================================================================
35
36 inline TopOpeBRepBuild_FuseFace::TopOpeBRepBuild_FuseFace (
37                                     const TopTools_ListOfShape& LIF,
38                                     const TopTools_ListOfShape& LRF,
39                                     const Standard_Integer CXM)
40 {
41   Init(LIF,LRF,CXM);
42 }
43
44 //=======================================================================
45 //function : IsDone
46 //purpose  : 
47 //=======================================================================
48
49 inline Standard_Boolean TopOpeBRepBuild_FuseFace::IsDone() const
50 {
51   return myDone;
52 }
53
54
55 //=======================================================================
56 //function : IsModified
57 //purpose  : 
58 //=======================================================================
59
60 inline Standard_Boolean TopOpeBRepBuild_FuseFace::IsModified() const
61 {
62   return myModified;
63 }
64
65
66 //=======================================================================
67 //function : ListOfFusionnedFaces
68 //purpose  : 
69 //=======================================================================
70
71 inline const TopTools_ListOfShape& TopOpeBRepBuild_FuseFace::LFuseFace() const
72 {
73   return myLFF;
74 }
75
76
77 //=======================================================================
78 //function : ListOfInternalEdges
79 //purpose  : 
80 //=======================================================================
81
82 inline const TopTools_ListOfShape& TopOpeBRepBuild_FuseFace::LInternEdge() const
83 {
84   return myLIE;
85 }
86
87 //=======================================================================
88 //function : ListOfExternalEdges
89 //purpose  : 
90 //=======================================================================
91
92 inline const TopTools_ListOfShape& TopOpeBRepBuild_FuseFace::LExternEdge() const
93 {
94   return myLEE;
95 }
96
97 //=======================================================================
98 //function : ListOfModifiedEdges
99 //purpose  : 
100 //=======================================================================
101
102 inline const TopTools_ListOfShape& TopOpeBRepBuild_FuseFace::LModifEdge() const
103 {
104   return myLME;
105 }
106
107 //=======================================================================
108 //function : ListOfInternalVertex
109 //purpose  : 
110 //=======================================================================
111
112 inline const TopTools_ListOfShape& TopOpeBRepBuild_FuseFace::LInternVertex() const
113 {
114   return myLIV;
115 }
116
117 //=======================================================================
118 //function : ListOfExternalVertex
119 //purpose  : 
120 //=======================================================================
121
122 inline const TopTools_ListOfShape& TopOpeBRepBuild_FuseFace::LExternVertex() const
123 {
124   return myLEV;
125 }
126
127 //=======================================================================
128 //function : ListOfModifiedVertex
129 //purpose  : 
130 //=======================================================================
131
132 inline const TopTools_ListOfShape& TopOpeBRepBuild_FuseFace::LModifVertex() const
133 {
134   return myLMV;
135 }