summaryrefslogtreecommitdiff
path: root/src/StepGeom/StepGeom_CurveBoundedSurface.cxx
blob: ec316b162ac6d942f8a71fe277a838f5714b68e5 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// File:	StepGeom_CurveBoundedSurface.cxx
// Created:	Fri Nov 26 16:26:38 1999 
// Author:	Andrey BETENEV
// Generator:	ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.0
// Copyright:	Matra Datavision 1999

#include <StepGeom_CurveBoundedSurface.ixx>

//=======================================================================
//function : StepGeom_CurveBoundedSurface
//purpose  : 
//=======================================================================

StepGeom_CurveBoundedSurface::StepGeom_CurveBoundedSurface ()
{
}

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

void StepGeom_CurveBoundedSurface::Init (const Handle(TCollection_HAsciiString) &aRepresentationItem_Name,
                                         const Handle(StepGeom_Surface) &aBasisSurface,
                                         const Handle(StepGeom_HArray1OfSurfaceBoundary) &aBoundaries,
                                         const Standard_Boolean aImplicitOuter)
{
  StepGeom_BoundedSurface::Init(aRepresentationItem_Name);

  theBasisSurface = aBasisSurface;

  theBoundaries = aBoundaries;

  theImplicitOuter = aImplicitOuter;
}

//=======================================================================
//function : BasisSurface
//purpose  : 
//=======================================================================

Handle(StepGeom_Surface) StepGeom_CurveBoundedSurface::BasisSurface () const
{
  return theBasisSurface;
}

//=======================================================================
//function : SetBasisSurface
//purpose  : 
//=======================================================================

void StepGeom_CurveBoundedSurface::SetBasisSurface (const Handle(StepGeom_Surface) &aBasisSurface)
{
  theBasisSurface = aBasisSurface;
}

//=======================================================================
//function : Boundaries
//purpose  : 
//=======================================================================

Handle(StepGeom_HArray1OfSurfaceBoundary) StepGeom_CurveBoundedSurface::Boundaries () const
{
  return theBoundaries;
}

//=======================================================================
//function : SetBoundaries
//purpose  : 
//=======================================================================

void StepGeom_CurveBoundedSurface::SetBoundaries (const Handle(StepGeom_HArray1OfSurfaceBoundary) &aBoundaries)
{
  theBoundaries = aBoundaries;
}

//=======================================================================
//function : ImplicitOuter
//purpose  : 
//=======================================================================

Standard_Boolean StepGeom_CurveBoundedSurface::ImplicitOuter () const
{
  return theImplicitOuter;
}

//=======================================================================
//function : SetImplicitOuter
//purpose  : 
//=======================================================================

void StepGeom_CurveBoundedSurface::SetImplicitOuter (const Standard_Boolean aImplicitOuter)
{
  theImplicitOuter = aImplicitOuter;
}