0027772: Foundation Classes - define Standard_Boolean using C++ type "bool" instead...
[occt.git] / src / TopOpeBRepBuild / TopOpeBRepBuild_FuseFace.lxx
CommitLineData
b311480e 1// Created on: 1998-07-30
2// Created by: LECLERE Florence
3// Copyright (c) 1998-1999 Matra Datavision
973c2be1 4// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5//
973c2be1 6// This file is part of Open CASCADE Technology software library.
b311480e 7//
d5f74e42 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
973c2be1 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.
b311480e 13//
973c2be1 14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
7fd59977 16
17#include <StdFail_NotDone.hxx>
18
19//=======================================================================
20//function : TopOpeBRepBuild_FuseFace
21//purpose :
22//=======================================================================
23
c24d4017 24inline TopOpeBRepBuild_FuseFace::TopOpeBRepBuild_FuseFace () :
25 myInternal(Standard_False),
26 myModified(Standard_False),
27 myDone(Standard_False)
7fd59977 28{}
29
30
31//=======================================================================
32//function : TopOpeBRepBuild_FuseFace
33//purpose :
34//=======================================================================
35
36inline 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
49inline Standard_Boolean TopOpeBRepBuild_FuseFace::IsDone() const
50{
51 return myDone;
52}
53
54
55//=======================================================================
56//function : IsModified
57//purpose :
58//=======================================================================
59
60inline Standard_Boolean TopOpeBRepBuild_FuseFace::IsModified() const
61{
62 return myModified;
63}
64
65
66//=======================================================================
67//function : ListOfFusionnedFaces
68//purpose :
69//=======================================================================
70
71inline const TopTools_ListOfShape& TopOpeBRepBuild_FuseFace::LFuseFace() const
72{
73 return myLFF;
74}
75
76
77//=======================================================================
78//function : ListOfInternalEdges
79//purpose :
80//=======================================================================
81
82inline const TopTools_ListOfShape& TopOpeBRepBuild_FuseFace::LInternEdge() const
83{
84 return myLIE;
85}
86
87//=======================================================================
88//function : ListOfExternalEdges
89//purpose :
90//=======================================================================
91
92inline const TopTools_ListOfShape& TopOpeBRepBuild_FuseFace::LExternEdge() const
93{
94 return myLEE;
95}
96
97//=======================================================================
98//function : ListOfModifiedEdges
99//purpose :
100//=======================================================================
101
102inline const TopTools_ListOfShape& TopOpeBRepBuild_FuseFace::LModifEdge() const
103{
104 return myLME;
105}
106
107//=======================================================================
108//function : ListOfInternalVertex
109//purpose :
110//=======================================================================
111
112inline const TopTools_ListOfShape& TopOpeBRepBuild_FuseFace::LInternVertex() const
113{
114 return myLIV;
115}
116
117//=======================================================================
118//function : ListOfExternalVertex
119//purpose :
120//=======================================================================
121
122inline const TopTools_ListOfShape& TopOpeBRepBuild_FuseFace::LExternVertex() const
123{
124 return myLEV;
125}
126
127//=======================================================================
128//function : ListOfModifiedVertex
129//purpose :
130//=======================================================================
131
132inline const TopTools_ListOfShape& TopOpeBRepBuild_FuseFace::LModifVertex() const
133{
134 return myLMV;
135}