blob: 88f8c44d69eb0f62646a265ac686a79ea1cff481 (
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
|
inline Standard_Boolean& BOP_ArgumentAnalyzer::ArgumentTypeMode()
{
return myArgumentTypeMode;
}
inline Standard_Boolean& BOP_ArgumentAnalyzer::SelfInterMode()
{
return mySelfInterMode;
}
inline Standard_Boolean& BOP_ArgumentAnalyzer::SmallEdgeMode()
{
return mySmallEdgeMode;
}
inline Standard_Boolean& BOP_ArgumentAnalyzer::RebuildFaceMode()
{
return myRebuildFaceMode;
}
inline Standard_Boolean& BOP_ArgumentAnalyzer::TangentMode()
{
return myTangentMode;
}
inline Standard_Boolean& BOP_ArgumentAnalyzer::MergeVertexMode()
{
return myMergeVertexMode;
}
inline Standard_Boolean& BOP_ArgumentAnalyzer::MergeEdgeMode()
{
return myMergeEdgeMode;
}
// inline Standard_Boolean& BOP_ArgumentAnalyzer::MergeFaceMode()
// {
// return myMergeFaceMode;
// }
|