summaryrefslogtreecommitdiff
path: root/inc/BRepBuilderAPI_Sewing.lxx
blob: e010c7267d0c693e27eb737f20c714ab6dc482dc (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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
// File:	BRepBuilderAPI_Sewing.lxx
// Created:	Mon Dec 18 13:16:57 2000
// Author:	Galina KULIKOVA
//		<gka@zamox.nnov.matra-dtv.fr>

//=======================================================================
//function : SetMaxTolerance
//purpose  : 
//=======================================================================

inline  void BRepBuilderAPI_Sewing::SetMaxTolerance(const Standard_Real theMaxToler) 
{
  myMaxTolerance = theMaxToler;
}

//=======================================================================
//function : MaxTolerance
//purpose  : 
//=======================================================================

inline  Standard_Real BRepBuilderAPI_Sewing::MaxTolerance() const
{
  return  myMaxTolerance;
}

//=======================================================================
//function : Tolerance
//purpose  : 
//=======================================================================

inline  Standard_Real BRepBuilderAPI_Sewing::Tolerance() const
{
  return myTolerance;
}

 
//=======================================================================
//function : SetTolerance
//purpose  : 
//=======================================================================

inline  void BRepBuilderAPI_Sewing::SetTolerance(const Standard_Real theToler) 
{
  myTolerance = theToler;
} 

//=======================================================================
//function : SetMinTolerance
//purpose  : 
//=======================================================================

inline  void BRepBuilderAPI_Sewing::SetMinTolerance(const Standard_Real theMinToler) 
{
  myMinTolerance = theMinToler;
}

//=======================================================================
//function : MinTolerance
//purpose  : 
//=======================================================================

inline  Standard_Real BRepBuilderAPI_Sewing::MinTolerance() const 
{
  return  myMinTolerance;
}
 
//=======================================================================
//function : SetFaceMode
//purpose  : 
//=======================================================================

inline  void BRepBuilderAPI_Sewing::SetFaceMode(const Standard_Boolean theFaceMode) 
{
  myFaceMode = theFaceMode;
}
 
//=======================================================================
//function : FaceMode
//purpose  : 
//=======================================================================

inline  Standard_Boolean BRepBuilderAPI_Sewing::FaceMode() const
{
  return myFaceMode;
}
 
//=======================================================================
//function : SetFloatingEdgesMode
//purpose  : 
//=======================================================================

inline  void BRepBuilderAPI_Sewing::SetFloatingEdgesMode(const Standard_Boolean theFloatingEdgesMode) 
{
  myFloatingEdgesMode = theFloatingEdgesMode;
}
 
//=======================================================================
//function : FloatingEdgesMode
//purpose  : 
//=======================================================================

inline  Standard_Boolean BRepBuilderAPI_Sewing::FloatingEdgesMode() const
{
  return myFloatingEdgesMode;
}
 
/*
//=======================================================================
//function : SetCuttingFloatingEdgesMode
//purpose  : 
//=======================================================================

inline  void BRepBuilderAPI_Sewing::SetCuttingFloatingEdgesMode(const Standard_Boolean theCuttingFloatingEdgesMode) 
{
  myCuttingFloatingEdgesMode = theCuttingFloatingEdgesMode;
}
 
//=======================================================================
//function : CuttingFloatingEdgesMode
//purpose  : 
//=======================================================================

inline  Standard_Boolean BRepBuilderAPI_Sewing::CuttingFloatingEdgesMode() const
{
  return myCuttingFloatingEdgesMode;
}
*/

//=======================================================================
//function : SameParameterMode
//purpose  : 
//=======================================================================

inline  Standard_Boolean BRepBuilderAPI_Sewing::SameParameterMode() const
{
  return mySameParameterMode;
}
 
//=======================================================================
//function : SetSameParameterMode
//purpose  : 
//=======================================================================

inline  void BRepBuilderAPI_Sewing::SetSameParameterMode(const Standard_Boolean SameParameterMode) 
{
  mySameParameterMode = SameParameterMode;
}

//=======================================================================
//function : SetLocalTolerancesMode
//purpose  : 
//=======================================================================

inline  void BRepBuilderAPI_Sewing::SetLocalTolerancesMode(const Standard_Boolean theLocalTolerancesMode) 
{
  myLocalToleranceMode = theLocalTolerancesMode;
}
 
//=======================================================================
//function : LocalTolerancesMode
//purpose  : 
//=======================================================================

inline  Standard_Boolean BRepBuilderAPI_Sewing::LocalTolerancesMode() const
{
  return myLocalToleranceMode; 
}

//=======================================================================
//function : SetNonManifoldMode
//purpose  : 
//=======================================================================

inline void BRepBuilderAPI_Sewing::SetNonManifoldMode(const Standard_Boolean theNonManifoldMode)
{
  myNonmanifold = theNonManifoldMode;
}

//=======================================================================
//function : NonManifoldMode
//purpose  : 
//=======================================================================

inline  Standard_Boolean BRepBuilderAPI_Sewing::NonManifoldMode() const
{
  return myNonmanifold;
}