blob: d335a0b8d40845b5ebe30e60a0c34996363ec7ae (
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_Loop.cxx
// Created: Tue Dec 19 19:52:32 1995
// Author: Jean Yves LEBEY
// <jyl@meteox>
#include <BOP_Loop.ixx>
//=======================================================================
//function : BOP_Loop
//purpose :
//=======================================================================
BOP_Loop::BOP_Loop (const TopoDS_Shape& S)
:
myIsShape(Standard_True),
myShape(S),
myBlockIterator(0,0)
{
}
//=======================================================================
//function : BOP_Loop
//purpose :
//=======================================================================
BOP_Loop::BOP_Loop (const BOP_BlockIterator& BI)
:
myIsShape(Standard_False),
myBlockIterator(BI)
{
}
//=======================================================================
//function : IsShape
//purpose :
//=======================================================================
Standard_Boolean BOP_Loop::IsShape() const
{
return myIsShape;
}
//=======================================================================
//function : Shape
//purpose :
//=======================================================================
const TopoDS_Shape& BOP_Loop::Shape() const
{
return myShape;
}
//=======================================================================
//function : BlockIterator
//purpose :
//=======================================================================
const BOP_BlockIterator& BOP_Loop::BlockIterator() const
{
return myBlockIterator;
}
|