mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-21 10:13:43 +03:00
44 lines
931 B
C++
Executable File
44 lines
931 B
C++
Executable File
#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();
|
|
}
|