blob: fe97cd39535bdc622ec585dc03c370ad56d6b911 (
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
|
// File: GraphTools_SC.gxx
// Created: Thu Sep 30 17:50:19 1993
// Author: Denis PASCAL
// <dp@bravox>
#include <GraphTools_SC.ixx>
//=======================================================================
//function : GraphTools_SC
//purpose :
//=======================================================================
GraphTools_SC::GraphTools_SC () {}
//=======================================================================
//function : Reset
//purpose :
//=======================================================================
void GraphTools_SC::Reset()
{
myBackSC.Clear();
myVertices.Clear();
myFrontSC.Clear();
}
//=======================================================================
//function : AddVertex
//purpose :
//=======================================================================
void GraphTools_SC::AddVertex(const Standard_Integer V)
{
myVertices.Append (V);
}
//=======================================================================
//function : NbVertices
//purpose :
//=======================================================================
Standard_Integer GraphTools_SC::NbVertices() const
{
return myVertices.Length();
}
//=======================================================================
//function : GetVertex
//purpose :
//=======================================================================
Standard_Integer GraphTools_SC::GetVertex
(const Standard_Integer index) const
{
return myVertices(index);
}
//=======================================================================
//function : AddFrontSC
//purpose :
//=======================================================================
void GraphTools_SC::AddFrontSC(const Handle(GraphTools_SC)& SC)
{
myFrontSC.Append(SC);
}
//=======================================================================
//function : GetFrontSC
//purpose :
//=======================================================================
const GraphTools_SCList& GraphTools_SC::GetFrontSC() const
{
return myFrontSC;
}
//=======================================================================
//function : AddBackSC
//purpose :
//=======================================================================
void GraphTools_SC::AddBackSC(const Handle(GraphTools_SC)& SC)
{
myBackSC.Append(SC);
}
//=======================================================================
//function : GetBackSC
//purpose :
//=======================================================================
const GraphTools_SCList& GraphTools_SC::GetBackSC() const
{
return myBackSC;
}
|