mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +03:00
Integration of OCCT 6.5.0 from SVN
This commit is contained in:
55
src/StepGeom/StepGeom_CompositeCurve.cxx
Executable file
55
src/StepGeom/StepGeom_CompositeCurve.cxx
Executable file
@@ -0,0 +1,55 @@
|
||||
#include <StepGeom_CompositeCurve.ixx>
|
||||
|
||||
|
||||
StepGeom_CompositeCurve::StepGeom_CompositeCurve () {}
|
||||
|
||||
void StepGeom_CompositeCurve::Init(
|
||||
const Handle(TCollection_HAsciiString)& aName)
|
||||
{
|
||||
|
||||
StepRepr_RepresentationItem::Init(aName);
|
||||
}
|
||||
|
||||
void StepGeom_CompositeCurve::Init(
|
||||
const Handle(TCollection_HAsciiString)& aName,
|
||||
const Handle(StepGeom_HArray1OfCompositeCurveSegment)& aSegments,
|
||||
const StepData_Logical aSelfIntersect)
|
||||
{
|
||||
// --- classe own fields ---
|
||||
segments = aSegments;
|
||||
selfIntersect = aSelfIntersect;
|
||||
// --- classe inherited fields ---
|
||||
StepRepr_RepresentationItem::Init(aName);
|
||||
}
|
||||
|
||||
|
||||
void StepGeom_CompositeCurve::SetSegments(const Handle(StepGeom_HArray1OfCompositeCurveSegment)& aSegments)
|
||||
{
|
||||
segments = aSegments;
|
||||
}
|
||||
|
||||
Handle(StepGeom_HArray1OfCompositeCurveSegment) StepGeom_CompositeCurve::Segments() const
|
||||
{
|
||||
return segments;
|
||||
}
|
||||
|
||||
Handle(StepGeom_CompositeCurveSegment) StepGeom_CompositeCurve::SegmentsValue(const Standard_Integer num) const
|
||||
{
|
||||
return segments->Value(num);
|
||||
}
|
||||
|
||||
Standard_Integer StepGeom_CompositeCurve::NbSegments () const
|
||||
{
|
||||
if (segments.IsNull()) return 0;
|
||||
return segments->Length();
|
||||
}
|
||||
|
||||
void StepGeom_CompositeCurve::SetSelfIntersect(const StepData_Logical aSelfIntersect)
|
||||
{
|
||||
selfIntersect = aSelfIntersect;
|
||||
}
|
||||
|
||||
StepData_Logical StepGeom_CompositeCurve::SelfIntersect() const
|
||||
{
|
||||
return selfIntersect;
|
||||
}
|
Reference in New Issue
Block a user