blob: e57d54fd7de8c6471580a707031ad4de78e580ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
#include <ShapeExtend.hxx>
//=======================================================================
//function : MinArea
//purpose :
//=======================================================================
inline Standard_Real& ShapeUpgrade_RemoveInternalWires::MinArea()
{
return myMinArea;
}
//=======================================================================
//function : RemoveFaceMode
//purpose :
//=======================================================================
inline Standard_Boolean& ShapeUpgrade_RemoveInternalWires::RemoveFaceMode()
{
return myRemoveFacesMode;
}
//=======================================================================
//function : RemovedFaces
//purpose :
//=======================================================================
inline const TopTools_SequenceOfShape& ShapeUpgrade_RemoveInternalWires::RemovedFaces() const
{
return myRemovedFaces;
}
//=======================================================================
//function : RemovedWires
//purpose :
//=======================================================================
inline const TopTools_SequenceOfShape& ShapeUpgrade_RemoveInternalWires::RemovedWires() const
{
return myRemoveWires;
}
//=======================================================================
//function : GetResult
//purpose :
//=======================================================================
inline TopoDS_Shape ShapeUpgrade_RemoveInternalWires::GetResult() const
{
return myResult;
}
//=======================================================================
//function : Status
//purpose :
//=======================================================================
inline Standard_Boolean ShapeUpgrade_RemoveInternalWires::Status(const ShapeExtend_Status theStatus) const
{
return ShapeExtend::DecodeStatus ( myStatus, theStatus );
}
|