/usr/include/opencascade/Poly_Triangulation.lxx is in libopencascade-foundation-dev 6.5.0.dfsg-2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | // 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();
}
|