blob: 953ce64bf00b22cb5e66d5b99df850ba6095cf37 (
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
|
#include <PPoly_Triangle.ixx>
//=======================================================================
//function : PPoly_Triangle::PPoly_Triangle
//purpose :
//=======================================================================
PPoly_Triangle::PPoly_Triangle(const Standard_Integer N1,
const Standard_Integer N2,
const Standard_Integer N3)
{
myNodes[0] = N1;
myNodes[1] = N2;
myNodes[2] = N3;
}
//=======================================================================
//function : PPoly_Triangle::Set
//purpose :
//=======================================================================
void PPoly_Triangle::Set(const Standard_Integer N1,
const Standard_Integer N2,
const Standard_Integer N3)
{
myNodes[0] = N1;
myNodes[1] = N2;
myNodes[2] = N3;
}
//=======================================================================
//function : PPoly_Triangle::Get
//purpose :
//=======================================================================
void PPoly_Triangle::Get(Standard_Integer& N1,
Standard_Integer& N2,
Standard_Integer& N3) const
{
N1 = myNodes[0];
N2 = myNodes[1];
N3 = myNodes[2];
}
|