Include :

- aggiornamenti.
This commit is contained in:
Dario Sassi
2016-02-24 08:21:47 +00:00
parent 8c391d6f94
commit 7a199dc473
2 changed files with 5 additions and 7 deletions
+4 -5
View File
@@ -464,13 +464,12 @@ EIN_EXPORT BOOL __stdcall EgtPackBoxCluster( int nId[], int nCount, double dXmin
EIN_EXPORT BOOL __stdcall EgtMoveBoxCluster( int nId[], int nCount, double vtMove[3],
double dXmin, double dYmin, double dXmax, double dYmax, double dOffs) ;
EIN_EXPORT BOOL __stdcall EgtGetClusterBBoxGlob( int nId[], int nCount, double ptMin[3], double ptMax[3]) ;
EIN_EXPORT BOOL __stdcall EgtCreateOutRegion( int nParentId,
EIN_EXPORT BOOL __stdcall EgtCreateOutRegionRectangle( int nParentId,
double dXmin, double dYmin, double dXmax, double dYmax, double dZ) ;
EIN_EXPORT BOOL __stdcall EgtCreateOutRegion2( int nParentId, int nOutCrvId) ;
EIN_EXPORT BOOL __stdcall EgtCreateOutRegion( int nParentId, int nOutCrvId) ;
EIN_EXPORT BOOL __stdcall EgtVerifyPartCluster( int nId[], int nCount, BOOL bReducedCut) ;
EIN_EXPORT BOOL __stdcall EgtPackPartCluster( int nId[], int nCount, BOOL bReducedCut,
double dXmin, double dYmin, double dXmax, double dYmax, BOOL bBottomUp) ;
EIN_EXPORT BOOL __stdcall EgtPackPartCluster2( int nId[], int nCount, BOOL bReducedCut, BOOL bBottomUp) ;
EIN_EXPORT BOOL __stdcall EgtPackPartClusterInRectangle( int nId[], int nCount, BOOL bReducedCut, BOOL bBottomUp) ;
EIN_EXPORT BOOL __stdcall EgtPackPartCluster( int nId[], int nCount, BOOL bReducedCut, BOOL bBottomUp) ;
EIN_EXPORT BOOL __stdcall EgtMovePartCluster( int nId[], int nCount, BOOL bReducedCut, double vtMove[3]) ;
EIN_EXPORT BOOL __stdcall EgtRotatePartCluster( int nId[], int nCount, BOOL bReducedCut,
const double ptCen[3], double* pdRotAngDeg) ;
+1 -2
View File
@@ -503,8 +503,7 @@ EXE_EXPORT bool ExeGetClusterBBoxGlob( const INTVECTOR& vIds, BBox3d& b3Box) ;
EXE_EXPORT bool ExeCreateOutRegion( int nParentId, double dXmin, double dYmin, double dXmax, double dYmax, double dZ) ;
EXE_EXPORT bool ExeCreateOutRegion( int nParentId, int nOutCrvId) ;
EXE_EXPORT bool ExeVerifyPartCluster( const INTVECTOR& vIds, bool bReducedCut) ;
EXE_EXPORT bool ExePackPartCluster( const INTVECTOR& vIds, bool bReducedCut,
double dXmin, double dYmin, double dXmax, double dYmax, bool bBottomUp) ;
EXE_EXPORT bool ExePackPartClusterInRectangle( const INTVECTOR& vIds, bool bReducedCut, bool bBottomUp) ;
EXE_EXPORT bool ExePackPartCluster( const INTVECTOR& vIds, bool bReducedCut, bool bBottomUp) ;
EXE_EXPORT bool ExeMovePartCluster( const INTVECTOR& vIds, bool bReducedCut, Vector3d& vtMove) ;
EXE_EXPORT bool ExeRotatePartCluster( const INTVECTOR& vIds, bool bReducedCut, const Point3d& ptCen, double& dRotAngDeg) ;