summaryrefslogtreecommitdiff
path: root/src/StepShape/StepShape_SweptFaceSolid.cxx
blob: 26cf7b305b7630ecead7972983f7dbc8552840f8 (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
#include <StepShape_SweptFaceSolid.ixx>


StepShape_SweptFaceSolid::StepShape_SweptFaceSolid ()  {}

void StepShape_SweptFaceSolid::Init(
	const Handle(TCollection_HAsciiString)& aName)
{

  StepRepr_RepresentationItem::Init(aName);
}

void StepShape_SweptFaceSolid::Init(
	const Handle(TCollection_HAsciiString)& aName,
	const Handle(StepShape_FaceSurface)& aSweptArea)
{
  // --- classe own fields ---
  sweptArea = aSweptArea;
  // --- classe inherited fields ---
  StepRepr_RepresentationItem::Init(aName);
}


void StepShape_SweptFaceSolid::SetSweptFace(const Handle(StepShape_FaceSurface)& aSweptArea)
{
  sweptArea = aSweptArea;
}

Handle(StepShape_FaceSurface) StepShape_SweptFaceSolid::SweptFace() const
{
  return sweptArea;
}