blob: a497bb524988cbf462a244041b7229869b9b1498 (
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
|
#include <StepShape_Block.ixx>
StepShape_Block::StepShape_Block () {}
void StepShape_Block::Init(
const Handle(TCollection_HAsciiString)& aName)
{
StepRepr_RepresentationItem::Init(aName);
}
void StepShape_Block::Init(
const Handle(TCollection_HAsciiString)& aName,
const Handle(StepGeom_Axis2Placement3d)& aPosition,
const Standard_Real aX,
const Standard_Real aY,
const Standard_Real aZ)
{
// --- classe own fields ---
position = aPosition;
x = aX;
y = aY;
z = aZ;
// --- classe inherited fields ---
StepRepr_RepresentationItem::Init(aName);
}
void StepShape_Block::SetPosition(const Handle(StepGeom_Axis2Placement3d)& aPosition)
{
position = aPosition;
}
Handle(StepGeom_Axis2Placement3d) StepShape_Block::Position() const
{
return position;
}
void StepShape_Block::SetX(const Standard_Real aX)
{
x = aX;
}
Standard_Real StepShape_Block::X() const
{
return x;
}
void StepShape_Block::SetY(const Standard_Real aY)
{
y = aY;
}
Standard_Real StepShape_Block::Y() const
{
return y;
}
void StepShape_Block::SetZ(const Standard_Real aZ)
{
z = aZ;
}
Standard_Real StepShape_Block::Z() const
{
return z;
}
|