blob: 4f04f9cdbabae4ce21873669c1fbeb3f20693493 (
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
|
// File: BOPTools_DEInfo.cxx
// Created: Wed Sep 12 13:02:17 2001
// Author: Peter KURNEV
// <pkv@irinox>
#include <BOPTools_DEInfo.ixx>
#include <TColStd_ListIteratorOfListOfInteger.hxx>
//=======================================================================
// function: BOPTools_DEInfo::BOPTools_DEInfo
// purpose:
//=======================================================================
BOPTools_DEInfo::BOPTools_DEInfo()
{}
//=======================================================================
// function: SetVertex
// purpose:
//=======================================================================
void BOPTools_DEInfo::SetVertex(const Standard_Integer nV)
{
myVertex=nV;
}
//=======================================================================
// function: Vertex
// purpose:
//=======================================================================
Standard_Integer BOPTools_DEInfo::Vertex()const
{
return myVertex;
}
//=======================================================================
// function: SetFaces
// purpose:
//=======================================================================
void BOPTools_DEInfo::SetFaces(const TColStd_ListOfInteger& aLI)
{
myFaces.Clear();
TColStd_ListIteratorOfListOfInteger anIt(aLI);
for (; anIt.More(); anIt.Next()) {
Standard_Integer nF=anIt.Value();
myFaces.Append(nF);
}
}
//=======================================================================
// function: Faces
// purpose:
//=======================================================================
const TColStd_ListOfInteger& BOPTools_DEInfo::Faces()const
{
return myFaces;
}
//=======================================================================
// function: ChangeFaces
// purpose:
//=======================================================================
TColStd_ListOfInteger& BOPTools_DEInfo::ChangeFaces()
{
return myFaces;
}
|