mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-12 01:50:22 +08:00
Integration of OCCT 6.5.0 from SVN
This commit is contained in:
41
src/StepShape/StepShape_EdgeLoop.cxx
Executable file
41
src/StepShape/StepShape_EdgeLoop.cxx
Executable 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();
|
||||
}
|
||||
Reference in New Issue
Block a user