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


StepShape_Path::StepShape_Path ()  {}

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

	StepRepr_RepresentationItem::Init(aName);
}

void StepShape_Path::Init(
	const Handle(TCollection_HAsciiString)& aName,
	const Handle(StepShape_HArray1OfOrientedEdge)& aEdgeList)
{
	// --- classe own fields ---
	edgeList = aEdgeList;
	// --- classe inherited fields ---
	StepRepr_RepresentationItem::Init(aName);
}


void StepShape_Path::SetEdgeList(const Handle(StepShape_HArray1OfOrientedEdge)& aEdgeList)
{
	edgeList = aEdgeList;
}

Handle(StepShape_HArray1OfOrientedEdge) StepShape_Path::EdgeList() const
{
	return edgeList;
}

Handle(StepShape_OrientedEdge) StepShape_Path::EdgeListValue(const Standard_Integer num) const
{
	return edgeList->Value(num);
}

Standard_Integer StepShape_Path::NbEdgeList () const
{
	if (edgeList.IsNull()) return 0;
	return edgeList->Length();
}