blob: e95725a679a4ddba7335c40e47f807b51d76a5da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// File: Poly_Polygon3D.lxx
// Created: Thu Mar 9 16:50:45 1995
// Author: Laurent PAINNOT
// <lpa@metrox>
//=======================================================================
//function : NbNodes
//purpose :
//=======================================================================
inline Standard_Integer Poly_Polygon3D::NbNodes() const
{
return myNodes.Length();
}
|