blob: cb2c1720fdc9b7627482fe9b6cf312b3de25c3c3 (
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
|
// File: BOP_WireSplitter.lxx
// Created: Tue Dec 15 11:00:15 2009
// Author: Sergey ZERCHANINOV
//=======================================================================
// function: BOP_WireSplitter::BOP_WireSplitter
// purpose:
//=======================================================================
inline BOP_WireSplitter::BOP_WireSplitter()
: myIsDone(Standard_False),
myNothingToDo(Standard_False)
{
}
//=======================================================================
// function: SetFace
// purpose:
//=======================================================================
inline void BOP_WireSplitter::SetFace(const TopoDS_Face& aFace)
{
myFace=aFace;
}
//=======================================================================
// function: Face
// purpose:
//=======================================================================
inline const TopoDS_Face& BOP_WireSplitter::Face() const
{
return myFace;
}
//=======================================================================
// function: IsNothingToDo
// purpose:
//=======================================================================
inline Standard_Boolean BOP_WireSplitter::IsNothingToDo() const
{
return myNothingToDo;
}
//=======================================================================
// function: IsDone
// purpose:
//=======================================================================
inline Standard_Boolean BOP_WireSplitter::IsDone() const
{
return myIsDone;
}
//=======================================================================
// function: Shapes
// purpose:
//=======================================================================
inline const BOPTColStd_ListOfListOfShape& BOP_WireSplitter::Shapes() const
{
return myShapes;
}
|