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


StepShape_EdgeLoop::StepShape_EdgeLoop ()  {}

void StepShape_EdgeLoop::Init(const Handle(TCollection_HAsciiString)& aName)
{
  StepRepr_RepresentationItem::Init(aName);
}

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


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

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

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

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