summaryrefslogtreecommitdiff
path: root/src/StepShape/StepShape_EdgeBasedWireframeModel.cxx
blob: 28cc7e7f043d774723570070c12724cdc37fd6f7 (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_EdgeBasedWireframeModel.cxx
// Created:	Fri Dec 28 16:02:01 2001 
// Author:	Andrey BETENEV
// Generator:	ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.1
// Copyright:	Matra Datavision 2000

#include <StepShape_EdgeBasedWireframeModel.ixx>

//=======================================================================
//function : StepShape_EdgeBasedWireframeModel
//purpose  : 
//=======================================================================

StepShape_EdgeBasedWireframeModel::StepShape_EdgeBasedWireframeModel ()
{
}

//=======================================================================
//function : Init
//purpose  : 
//=======================================================================

void StepShape_EdgeBasedWireframeModel::Init (const Handle(TCollection_HAsciiString) &aRepresentationItem_Name,
                                              const Handle(StepShape_HArray1OfConnectedEdgeSet) &aEbwmBoundary)
{
  StepGeom_GeometricRepresentationItem::Init(aRepresentationItem_Name);

  theEbwmBoundary = aEbwmBoundary;
}

//=======================================================================
//function : EbwmBoundary
//purpose  : 
//=======================================================================

Handle(StepShape_HArray1OfConnectedEdgeSet) StepShape_EdgeBasedWireframeModel::EbwmBoundary () const
{
  return theEbwmBoundary;
}

//=======================================================================
//function : SetEbwmBoundary
//purpose  : 
//=======================================================================

void StepShape_EdgeBasedWireframeModel::SetEbwmBoundary (const Handle(StepShape_HArray1OfConnectedEdgeSet) &aEbwmBoundary)
{
  theEbwmBoundary = aEbwmBoundary;
}