summaryrefslogtreecommitdiff
path: root/src/BRepMesh/BRepMesh_DiscretRoot.cxx
blob: dc56e9e9eaa68a906f7dba0cb263b9081bf64115 (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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
// File:    BRepMesh_DiscretRoot.cxx
// Created: Thu Apr 10 10:08:44 2008
// Author:  Peter KURNEV <pkv@irinox>

#include <BRepMesh_DiscretRoot.ixx>

//=======================================================================
//function : BRepMesh_DiscretRoot
//purpose  :
//=======================================================================
BRepMesh_DiscretRoot::BRepMesh_DiscretRoot()
: myDeflection (0.001),
  myAngle (0.1),
  myIsDone (Standard_False)
{
  //
}

//=======================================================================
//function : ~
//purpose  :
//=======================================================================
BRepMesh_DiscretRoot::~BRepMesh_DiscretRoot()
{
}

//=======================================================================
//function : SetDeflection
//purpose  :
//=======================================================================
void BRepMesh_DiscretRoot::SetDeflection (const Standard_Real theDeflection)
{
  myDeflection = theDeflection;
}

//=======================================================================
//function : Deflection
//purpose  : 
//=======================================================================
Standard_Real BRepMesh_DiscretRoot::Deflection() const
{
  return myDeflection;
}

//=======================================================================
//function : SetAngle
//purpose  :
//=======================================================================
void BRepMesh_DiscretRoot::SetAngle (const Standard_Real theAngle)
{
  myAngle = theAngle;
}

//=======================================================================
//function : Angle
//purpose  :
//=======================================================================
Standard_Real BRepMesh_DiscretRoot::Angle() const
{
  return myAngle;
}

//=======================================================================
//function : SetShape
//purpose  :
//=======================================================================
void BRepMesh_DiscretRoot::SetShape (const TopoDS_Shape& theShape)
{
  myShape = theShape;
}

//=======================================================================
//function : Shape
//purpose  :
//=======================================================================
const TopoDS_Shape& BRepMesh_DiscretRoot::Shape() const
{
  return myShape;
}

//=======================================================================
//function : IsDone
//purpose  :
//=======================================================================
Standard_Boolean BRepMesh_DiscretRoot::IsDone() const
{
  return myIsDone;
}

//=======================================================================
//function : SetDone
//purpose  :
//=======================================================================
void BRepMesh_DiscretRoot::SetDone()
{
  myIsDone = Standard_True;
}

//=======================================================================
//function : SetNotDone
//purpose  :
//=======================================================================
void BRepMesh_DiscretRoot::SetNotDone()
{
  myIsDone = Standard_False;
}

//=======================================================================
//function : Init
//purpose  :
//=======================================================================
void BRepMesh_DiscretRoot::Init()
{
  //
}