Include :

- aggiornamento.
This commit is contained in:
Dario Sassi
2016-02-17 14:37:37 +00:00
parent b14d3ab4ed
commit d0b1ed59cb
4 changed files with 5 additions and 1 deletions
+1
View File
@@ -514,6 +514,7 @@ EIN_EXPORT BOOL __stdcall EgtModifyRawPartSize( int nRawId, double dLength, doub
EIN_EXPORT BOOL __stdcall EgtModifyRawPartHeight( int nRawId, double dHeight) ;
EIN_EXPORT BOOL __stdcall EgtKeepRawPart( int nRawId) ;
EIN_EXPORT BOOL __stdcall EgtVerifyRawPartPhase( int nRawId, int nPhase) ;
EIN_EXPORT BOOL __stdcall EgtRemoveRawPartFromCurrPhase( int nRawId) ;
EIN_EXPORT BOOL __stdcall EgtRemoveRawPart( int nRawId) ;
EIN_EXPORT BOOL __stdcall EgtMoveToCornerRawPart( int nRawId, const double ptCorner[3], int nFlag) ;
EIN_EXPORT BOOL __stdcall EgtMoveRawPart( int nRawId, const double vtMove[3]) ;
+1
View File
@@ -66,6 +66,7 @@ class __declspec( novtable) IMachMgr
virtual bool ModifyRawPartHeight( int nRawId, double dHeight) = 0 ;
virtual bool KeepRawPart( int nRawId) = 0 ;
virtual bool VerifyRawPartPhase( int nRawId, int nPhase) const = 0 ;
virtual bool RemoveRawPartFromCurrPhase( int nRawId) = 0 ;
virtual bool RemoveRawPart( int nRawId) = 0 ;
virtual bool RotateRawPart( int nRawId, const Vector3d& vtAx, double dAngRotDeg) = 0 ;
virtual bool MoveToCornerRawPart( int nRawId, const Point3d& ptCorner, int nFlag) = 0 ;
+2 -1
View File
@@ -69,5 +69,6 @@ enum CarRes{ CAR_INTERF = 0, // interferiscono entrambi gli allu
CAR_LO_OK = 2, // allungameno uscita va bene
CAR_LI_LO_OK = 1 + 2} ; // entrambi gli allungamenti vanno bene
//----------------- Costante per sostituzione nome progetto --------------------
//----------------- Costanti per sostituzione direttorio e nome progetto --------------------
const std::string SUB_PROJECT_DIR = "%PRJDIR%" ;
const std::string SUB_PROJECT_TITLE = "%PRJTITLE%" ;
+1
View File
@@ -552,6 +552,7 @@ EXE_EXPORT bool ExeModifyRawPartSize( int nRawId, double dLength, double dWidth,
EXE_EXPORT bool ExeModifyRawPartHeight( int nRawId, double dHeight) ;
EXE_EXPORT bool ExeKeepRawPart( int nRawId) ;
EXE_EXPORT bool ExeVerifyRawPartPhase( int nRawId, int nPhase) ;
EXE_EXPORT bool ExeRemoveRawPartFromCurrPhase( int nRawId) ;
EXE_EXPORT bool ExeRemoveRawPart( int nRawId) ;
EXE_EXPORT bool ExeRotateRawPart( int nRawId, const Vector3d& vtAx, double dAngRotDeg) ;
EXE_EXPORT bool ExeMoveToCornerRawPart( int nRawId, const Point3d& ptCorner, int nFlag) ;