EgtInterface :
- aggiunta interfaccia per EgtCreateCurveCompoByReorder - aggiunte EgtGetPhotoDimensions e EgtGetPhotoPixels.
This commit is contained in:
@@ -230,6 +230,19 @@ __stdcall EgtCreateCurveCompoByChain( int nParentId, int nNumId, const int nIds[
|
||||
return ExeCreateCurveCompoByChain( nParentId, vIds, ptNear, ( bErase != FALSE), nRefType, nullptr) ;
|
||||
}
|
||||
|
||||
//-------------------------------------------------------------------------------
|
||||
int
|
||||
__stdcall EgtCreateCurveCompoByReorder( int nParentId, int nNumId, const int nIds[],
|
||||
const double ptNear[3], BOOL bErase, int nRefType)
|
||||
{
|
||||
INTVECTOR vIds ;
|
||||
vIds.reserve( nNumId) ;
|
||||
for ( int i = 0 ; i < nNumId ; ++i) {
|
||||
vIds.push_back( nIds[i]) ;
|
||||
}
|
||||
return ExeCreateCurveCompoByReorder( nParentId, vIds, ptNear, ( bErase != FALSE), nRefType, nullptr) ;
|
||||
}
|
||||
|
||||
//-------------------------------------------------------------------------------
|
||||
int
|
||||
__stdcall EgtCreateCurveCompoFromPoints( int nParentId, int nP, const double ptPs[], int nRefType)
|
||||
|
||||
Reference in New Issue
Block a user