Integration of OCCT 6.5.0 from SVN

This commit is contained in:
bugmaster
2011-03-16 07:30:28 +00:00
committed by bugmaster
parent 4903637061
commit 7fd59977df
16375 changed files with 3882564 additions and 0 deletions

View File

@@ -0,0 +1,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();
}