blob: 0cf0dce70171e20d3a00f45d18a3a61b3a7ffdde (
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
|
// File: StepShape_ConnectedEdgeSet.cxx
// Created: Fri Dec 28 16:02:00 2001
// Author: Andrey BETENEV
// Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.1
// Copyright: Matra Datavision 2000
#include <StepShape_ConnectedEdgeSet.ixx>
//=======================================================================
//function : StepShape_ConnectedEdgeSet
//purpose :
//=======================================================================
StepShape_ConnectedEdgeSet::StepShape_ConnectedEdgeSet ()
{
}
//=======================================================================
//function : Init
//purpose :
//=======================================================================
void StepShape_ConnectedEdgeSet::Init (const Handle(TCollection_HAsciiString) &aRepresentationItem_Name,
const Handle(StepShape_HArray1OfEdge) &aCesEdges)
{
StepShape_TopologicalRepresentationItem::Init(aRepresentationItem_Name);
theCesEdges = aCesEdges;
}
//=======================================================================
//function : CesEdges
//purpose :
//=======================================================================
Handle(StepShape_HArray1OfEdge) StepShape_ConnectedEdgeSet::CesEdges () const
{
return theCesEdges;
}
//=======================================================================
//function : SetCesEdges
//purpose :
//=======================================================================
void StepShape_ConnectedEdgeSet::SetCesEdges (const Handle(StepShape_HArray1OfEdge) &aCesEdges)
{
theCesEdges = aCesEdges;
}
|