blob: 0cf97f13cfaf95166f539bd7126f382a7dd2445c (
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
|
#include <StepShape_OrientedFace.ixx>
StepShape_OrientedFace::StepShape_OrientedFace () {}
void StepShape_OrientedFace::Init(
const Handle(TCollection_HAsciiString)& aName,
const Handle(StepShape_HArray1OfFaceBound)& aBounds)
{
StepShape_Face::Init(aName, aBounds);
}
void StepShape_OrientedFace::Init(
const Handle(TCollection_HAsciiString)& aName,
const Handle(StepShape_Face)& aFaceElement,
const Standard_Boolean aOrientation)
{
// --- classe own fields ---
faceElement = aFaceElement;
orientation = aOrientation;
// --- classe inherited fields ---
Handle(StepShape_HArray1OfFaceBound) aBounds;
aBounds.Nullify();
StepShape_Face::Init(aName, aBounds);
}
void StepShape_OrientedFace::SetFaceElement(const Handle(StepShape_Face)& aFaceElement)
{
faceElement = aFaceElement;
}
Handle(StepShape_Face) StepShape_OrientedFace::FaceElement() const
{
return faceElement;
}
void StepShape_OrientedFace::SetOrientation(const Standard_Boolean aOrientation)
{
orientation = aOrientation;
}
Standard_Boolean StepShape_OrientedFace::Orientation() const
{
return orientation;
}
void StepShape_OrientedFace::SetBounds(const Handle(StepShape_HArray1OfFaceBound)& aBounds)
{
// WARNING : the field is redefined.
// field set up forbidden.
cout << "Field is redefined, SetUp Forbidden" << endl;
}
Handle(StepShape_HArray1OfFaceBound) StepShape_OrientedFace::Bounds() const
{
// WARNING : the field is redefined.
// method body is not yet automaticly wrote
// Attention, cette modif. est juste pour la compilation
return faceElement->Bounds();
}
Handle(StepShape_FaceBound) StepShape_OrientedFace::BoundsValue(const Standard_Integer num) const
{
// WARNING : the field is redefined.
// method body is not yet automaticly wrote
// Attention, cette modif. est juste pour la compilation
return faceElement->BoundsValue(num);
}
Standard_Integer StepShape_OrientedFace::NbBounds () const
{
// WARNING : the field is redefined.
// method body is not yet automaticly wrote
// Attention, cette modif. est juste pour la compilation
return faceElement->NbBounds();
}
|