blob: 0340e313bbfe09105a47d74344e1fef3b88c5d27 (
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
|
// File: StepToTopoDS_Root.cxx
// Created: Wed Jul 28 11:57:52 1993
// Author: Martine LANGLOIS
// <mla@mastox>
#include <StepToTopoDS_Root.hxx>
//=======================================================================
//function : IsDone
//purpose :
//=======================================================================
inline Standard_Boolean StepToTopoDS_Root::IsDone () const
{
return done;
}
//=======================================================================
//function : Precision
//purpose :
//=======================================================================
inline Standard_Real StepToTopoDS_Root::Precision() const
{
return myPrecision;
}
//=======================================================================
//function : SetPrecision
//purpose :
//=======================================================================
inline void StepToTopoDS_Root::SetPrecision(const Standard_Real preci)
{
myPrecision = preci;
}
//=======================================================================
//function : MaxTol
//purpose :
//=======================================================================
inline Standard_Real StepToTopoDS_Root::MaxTol() const
{
return myMaxTol;
}
//=======================================================================
//function : SetMaxTol
//purpose :
//=======================================================================
inline void StepToTopoDS_Root::SetMaxTol(const Standard_Real maxpreci)
{
myMaxTol = maxpreci;
}
|