EgtInterface 1.6i7 :

- aggiunta EgtCreateSurfFlatRegion.
This commit is contained in:
Dario Sassi
2015-09-22 12:54:26 +00:00
parent 4032295765
commit ff135baddc
2 changed files with 12 additions and 0 deletions
+12
View File
@@ -19,6 +19,18 @@
using namespace std ;
//-------------------------------------------------------------------------------
int
__stdcall EgtCreateSurfFlatRegion( int nParentId, int nNumId, const int nCrvIds[])
{
INTVECTOR vCrvIds ;
vCrvIds.reserve( nNumId) ;
for ( int i = 0 ; i < nNumId ; ++i) {
vCrvIds.push_back( nCrvIds[i]) ;
}
return ExeCreateSurfFlatRegion( nParentId, vCrvIds, nullptr) ;
}
//-------------------------------------------------------------------------------
int
__stdcall EgtCreateSurfTmBBox( int nParentId, const double ptMin[3], const double ptMax[3], int nRefType)