EgtInterface 2.4k2 :

- aggiunte interfacce per funzioni EgtApproxSurface e EgtSurfTmToTriangles.
This commit is contained in:
DarioS
2022-11-04 19:22:23 +01:00
parent c3e3c12904
commit a33ed95b37
2 changed files with 14 additions and 0 deletions
+14
View File
@@ -35,6 +35,13 @@ __stdcall EgtExplodeSurface( int nId, int* pnCount)
return ExeExplodeSurface( nId, pnCount) ;
}
//-------------------------------------------------------------------------------
BOOL
__stdcall EgtApproxSurface( int nId, double dLinTol)
{
return ( ExeApproxSurface( nId, dLinTol) ? TRUE : FALSE) ;
}
//----------------------------------------------------------------------------
BOOL
__stdcall EgtSurfFrAdd( int nId1, int nId2)
@@ -63,6 +70,13 @@ __stdcall EgtSurfFrOffset( int nId, double dDist, int nType)
return ( ExeSurfFrOffset( nId, dDist, nType) ? TRUE : FALSE) ;
}
//----------------------------------------------------------------------------
int
__stdcall EgtSurfTmToTriangles( int nId, int* pnCount)
{
return ExeSurfTmToTriangles( nId, pnCount) ;
}
//----------------------------------------------------------------------------
BOOL
__stdcall EgtSurfTmRemoveFacet( int nId, int nFacet)
BIN
View File
Binary file not shown.