EgtInterface 2.1k3 :

- aggiunto prototipo per EgtSurfFrGrossArea.
This commit is contained in:
Dario Sassi
2019-11-19 10:40:12 +00:00
parent 65bca1227f
commit 6072a49dc3
2 changed files with 10 additions and 0 deletions
+10
View File
@@ -395,6 +395,16 @@ __stdcall EgtSurfFrNormVersor( int nId, int nRefId, double vtNorm[3])
return TRUE ;
}
//----------------------------------------------------------------------------
BOOL
__stdcall EgtSurfFrGrossArea( int nId, double* pdArea)
{
if ( pdArea == nullptr)
return FALSE ;
// recupero l'area approssimata
return ( ExeSurfFrGrossArea( nId, *pdArea) ? TRUE : FALSE) ;
}
//----------------------------------------------------------------------------
int
__stdcall EgtSurfFrChunkCount( int nId)