blob: ba7e843974e2f32e0c127b4b903aaba0bde459ad (
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
|
#include <StepShape_PolyLoop.ixx>
StepShape_PolyLoop::StepShape_PolyLoop () {}
void StepShape_PolyLoop::Init(
const Handle(TCollection_HAsciiString)& aName)
{
StepRepr_RepresentationItem::Init(aName);
}
void StepShape_PolyLoop::Init(
const Handle(TCollection_HAsciiString)& aName,
const Handle(StepGeom_HArray1OfCartesianPoint)& aPolygon)
{
// --- classe own fields ---
polygon = aPolygon;
// --- classe inherited fields ---
StepRepr_RepresentationItem::Init(aName);
}
void StepShape_PolyLoop::SetPolygon(const Handle(StepGeom_HArray1OfCartesianPoint)& aPolygon)
{
polygon = aPolygon;
}
Handle(StepGeom_HArray1OfCartesianPoint) StepShape_PolyLoop::Polygon() const
{
return polygon;
}
Handle(StepGeom_CartesianPoint) StepShape_PolyLoop::PolygonValue(const Standard_Integer num) const
{
return polygon->Value(num);
}
Standard_Integer StepShape_PolyLoop::NbPolygon () const
{
if (polygon.IsNull()) return 0;
return polygon->Length();
}
|