7fd59977 |
1 | // File: BRepFilletAPI_MakeFillet2d.lxx |
2 | // Created: Thu Aug 31 15:07:45 1995 |
3 | // Author: Remi LEQUETTE |
4 | // <rle@mentox> |
5 | |
6 | //======================================================================= |
7 | //function : IsModified |
8 | //purpose : |
9 | //======================================================================= |
10 | |
11 | inline Standard_Boolean BRepFilletAPI_MakeFillet2d::IsModified(const TopoDS_Edge& E) const |
12 | { |
13 | return myMakeChFi2d.IsModified(E); |
14 | } |
15 | |
16 | //======================================================================= |
17 | //function : FilletEdges |
18 | //purpose : |
19 | //======================================================================= |
20 | |
21 | inline const TopTools_SequenceOfShape& BRepFilletAPI_MakeFillet2d::FilletEdges() const |
22 | { |
23 | return myMakeChFi2d.FilletEdges(); |
24 | } |
25 | |
26 | //======================================================================= |
27 | //function : NbFillet |
28 | //purpose : |
29 | //======================================================================= |
30 | |
31 | inline Standard_Integer BRepFilletAPI_MakeFillet2d::NbFillet() const |
32 | { |
33 | return myMakeChFi2d.NbFillet(); |
34 | } |
35 | |
36 | //======================================================================= |
37 | //function : ChamferEdges |
38 | //purpose : |
39 | //======================================================================= |
40 | |
41 | inline const TopTools_SequenceOfShape& BRepFilletAPI_MakeFillet2d::ChamferEdges() const |
42 | { |
43 | return myMakeChFi2d.ChamferEdges(); |
44 | } |
45 | |
46 | //======================================================================= |
47 | //function : NbChamfer |
48 | //purpose : |
49 | //======================================================================= |
50 | |
51 | inline Standard_Integer BRepFilletAPI_MakeFillet2d::NbChamfer() const |
52 | { |
53 | return myMakeChFi2d.NbChamfer(); |
54 | } |
55 | |
56 | //======================================================================= |
57 | //function : HasDescendant |
58 | //purpose : |
59 | //======================================================================= |
60 | |
61 | inline Standard_Boolean BRepFilletAPI_MakeFillet2d::HasDescendant(const TopoDS_Edge& E) const |
62 | { |
63 | return myMakeChFi2d.HasDescendant(E); |
64 | } |
65 | |
66 | //======================================================================= |
67 | //function : DescendantEdge |
68 | //purpose : |
69 | //======================================================================= |
70 | |
71 | inline const TopoDS_Edge& BRepFilletAPI_MakeFillet2d::DescendantEdge(const TopoDS_Edge& E) const |
72 | { |
73 | return myMakeChFi2d.DescendantEdge(E); |
74 | } |
75 | |
76 | //======================================================================= |
77 | //function : Status |
78 | //purpose : |
79 | //======================================================================= |
80 | |
81 | inline ChFi2d_ConstructionError BRepFilletAPI_MakeFillet2d::Status() const |
82 | { |
83 | return myMakeChFi2d.Status(); |
84 | } |
85 | |