blob: db8f6e8474de9f56c0f76d4a0fea21f0e6769bfc (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
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;
}
|