blob: 9c78b3e718e71cc18f8d0a213cb005d1f09ef69e (
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_FaceBasedSurfaceModel.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_FaceBasedSurfaceModel.ixx>
//=======================================================================
//function : StepShape_FaceBasedSurfaceModel
//purpose :
//=======================================================================
StepShape_FaceBasedSurfaceModel::StepShape_FaceBasedSurfaceModel ()
{
}
//=======================================================================
//function : Init
//purpose :
//=======================================================================
void StepShape_FaceBasedSurfaceModel::Init (const Handle(TCollection_HAsciiString) &aRepresentationItem_Name,
const Handle(StepShape_HArray1OfConnectedFaceSet) &aFbsmFaces)
{
StepGeom_GeometricRepresentationItem::Init(aRepresentationItem_Name);
theFbsmFaces = aFbsmFaces;
}
//=======================================================================
//function : FbsmFaces
//purpose :
//=======================================================================
Handle(StepShape_HArray1OfConnectedFaceSet) StepShape_FaceBasedSurfaceModel::FbsmFaces () const
{
return theFbsmFaces;
}
//=======================================================================
//function : SetFbsmFaces
//purpose :
//=======================================================================
void StepShape_FaceBasedSurfaceModel::SetFbsmFaces (const Handle(StepShape_HArray1OfConnectedFaceSet) &aFbsmFaces)
{
theFbsmFaces = aFbsmFaces;
}
|