summaryrefslogtreecommitdiff
path: root/inc/Poly_Triangulation.lxx
blob: 1f07652f3b798319ba21a284978b8a999d25df28 (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
// File:	Poly_Triangulation.lxx
// Created:	Mon Mar  6 10:53:09 1995
// Author:	Laurent PAINNOT
//		<lpa@metrox>

//=======================================================================
//function : NbNodes
//purpose  : 
//=======================================================================

 inline Standard_Integer Poly_Triangulation::NbNodes() const 
{
  return myNbNodes;
}

//=======================================================================
//function : NbTriangles
//purpose  : 
//=======================================================================

inline Standard_Integer Poly_Triangulation::NbTriangles() const 
{
  return myNbTriangles;
}

//=======================================================================
//function : HasUVNodes
//purpose  : 
//=======================================================================

inline Standard_Boolean Poly_Triangulation::HasUVNodes() const 
{
  return !myUVNodes.IsNull();
}