blob: 7d3f87a6b64a4d90304dada1f4fb5b32b8140e38 (
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
|
#include <StepShape_OrientedPath.ixx>
StepShape_OrientedPath::StepShape_OrientedPath () {}
void StepShape_OrientedPath::Init(
const Handle(TCollection_HAsciiString)& aName,
const Handle(StepShape_HArray1OfOrientedEdge)& aEdgeList)
{
StepShape_Path::Init(aName, aEdgeList);
}
void StepShape_OrientedPath::Init(
const Handle(TCollection_HAsciiString)& aName,
const Handle(StepShape_EdgeLoop)& aPathElement,
const Standard_Boolean aOrientation)
{
// --- classe own fields ---
pathElement = aPathElement;
orientation = aOrientation;
// --- classe inherited fields ---
Handle(StepShape_HArray1OfOrientedEdge) aEdgeList;
aEdgeList.Nullify();
StepShape_Path::Init(aName, aEdgeList);
}
void StepShape_OrientedPath::SetPathElement(const Handle(StepShape_EdgeLoop)& aPathElement)
{
pathElement = aPathElement;
}
Handle(StepShape_EdgeLoop) StepShape_OrientedPath::PathElement() const
{
return pathElement;
}
void StepShape_OrientedPath::SetOrientation(const Standard_Boolean aOrientation)
{
orientation = aOrientation;
}
Standard_Boolean StepShape_OrientedPath::Orientation() const
{
return orientation;
}
void StepShape_OrientedPath::SetEdgeList(const Handle(StepShape_HArray1OfOrientedEdge)& aEdgeList)
{
// WARNING : the field is redefined.
// field set up forbidden.
cout << "Field is redefined, SetUp Forbidden" << endl;
}
Handle(StepShape_HArray1OfOrientedEdge) StepShape_OrientedPath::EdgeList() const
{
// WARNING : the field is redefined.
// method body is not yet automaticly wrote
if (orientation)
return pathElement->EdgeList();
else {
// on devrait creer un nouveau tableau d'oriented edge classe dans
// l'ordre inverse - on fera plus tard
return pathElement->EdgeList();
}
}
Handle(StepShape_OrientedEdge) StepShape_OrientedPath::EdgeListValue(const Standard_Integer num) const
{
// WARNING : the field is redefined.
// method body is not yet automaticly wrote
if (orientation)
return pathElement->EdgeListValue(num);
else {
Standard_Integer nbEdges = pathElement->NbEdgeList();
return pathElement->EdgeListValue(nbEdges - num +1);
}
}
Standard_Integer StepShape_OrientedPath::NbEdgeList () const
{
// WARNING : the field is redefined.
// method body is not yet automaticly wrote
return pathElement->NbEdgeList();
}
|