blob: 640be9d4a351edbc5e8c7808a480c88ae1e00d91 (
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
// File: ChFi2d_Builder.lxx
// Created: Mon Jun 12 18:14:50 1995
// Author: Philippe DERVIEUX
// <phd@tlefon>
#include <TopoDS.hxx>
#include <TopoDS_Shape.hxx>
#include <TopoDS_Vertex.hxx>
#include <TopoDS_Edge.hxx>
#include <TopoDS_Wire.hxx>
#include <TopoDS_Face.hxx>
//=======================================================================
//function : Result
//purpose :
//=======================================================================
inline TopoDS_Face ChFi2d_Builder::Result() const
{
TopoDS_Face aFace = newFace;
aFace.Orientation(refFace.Orientation());
return aFace;
}
//=======================================================================
//function : IsModified
//purpose :
//=======================================================================
inline Standard_Boolean ChFi2d_Builder::IsModified
(const TopoDS_Edge& E) const
{
return history.IsBound(E);
}
//=======================================================================
//function : FilletEdges
//purpose :
//=======================================================================
inline const TopTools_SequenceOfShape& ChFi2d_Builder::FilletEdges() const
{
return fillets;
}
//=======================================================================
//function : ChamferEdges
//purpose :
//=======================================================================
inline const TopTools_SequenceOfShape& ChFi2d_Builder::ChamferEdges() const
{
return chamfers;
}
//=======================================================================
//function : NbFillet
//purpose :
//=======================================================================
inline Standard_Integer ChFi2d_Builder::NbFillet() const
{
return fillets.Length();
}
//=======================================================================
//function : NbChamfer
//purpose :
//=======================================================================
inline Standard_Integer ChFi2d_Builder::NbChamfer() const
{
return chamfers.Length();
}
//=======================================================================
//function : HasDescendant
//purpose :
//=======================================================================
inline Standard_Boolean ChFi2d_Builder::HasDescendant
(const TopoDS_Edge& E) const
{
return history.IsBound(E);
}
//=======================================================================
//function : DescendantEdge
//purpose :
//=======================================================================
inline const TopoDS_Edge& ChFi2d_Builder::DescendantEdge(const TopoDS_Edge& E) const
{
return TopoDS::Edge(history.Find(E));
} // DescendantEdge
//=======================================================================
//function : Status
//purpose :
//=======================================================================
inline ChFi2d_ConstructionError ChFi2d_Builder::Status() const
{
return status;
}
|