blob: 5ea533b8f2d77f2d4fc1d8499b68feae2c9a8d15 (
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
|
#include <StepShape_ExtrudedFaceSolid.ixx>
StepShape_ExtrudedFaceSolid::StepShape_ExtrudedFaceSolid () {}
void StepShape_ExtrudedFaceSolid::Init(
const Handle(TCollection_HAsciiString)& aName,
const Handle(StepShape_FaceSurface)& aSweptArea)
{
StepShape_SweptFaceSolid::Init(aName, aSweptArea);
}
void StepShape_ExtrudedFaceSolid::Init(
const Handle(TCollection_HAsciiString)& aName,
const Handle(StepShape_FaceSurface)& aSweptArea,
const Handle(StepGeom_Direction)& aExtrudedDirection,
const Standard_Real aDepth)
{
// --- classe own fields ---
extrudedDirection = aExtrudedDirection;
depth = aDepth;
// --- classe inherited fields ---
StepShape_SweptFaceSolid::Init(aName, aSweptArea);
}
void StepShape_ExtrudedFaceSolid::SetExtrudedDirection(const Handle(StepGeom_Direction)& aExtrudedDirection)
{
extrudedDirection = aExtrudedDirection;
}
Handle(StepGeom_Direction) StepShape_ExtrudedFaceSolid::ExtrudedDirection() const
{
return extrudedDirection;
}
void StepShape_ExtrudedFaceSolid::SetDepth(const Standard_Real aDepth)
{
depth = aDepth;
}
Standard_Real StepShape_ExtrudedFaceSolid::Depth() const
{
return depth;
}
|