diff --git a/API_MachMgr.cpp b/API_MachMgr.cpp index 92656c3..662b4d0 100644 --- a/API_MachMgr.cpp +++ b/API_MachMgr.cpp @@ -378,6 +378,20 @@ __stdcall EgtRemovePartFromRawPart( int nPartId) return ( ExeRemovePartFromRawPart( nPartId) ? TRUE : FALSE) ; } +//----------------------------------------------------------------------------- +BOOL +__stdcall EgtMovePartInRawPart( int nPartId, const double vtMove[3]) +{ + return ( ExeTranslatePartInRawPart( nPartId, vtMove) ? TRUE : FALSE) ; +} + +//----------------------------------------------------------------------------- +BOOL +__stdcall EgtRotatePartInRawPart( int nRawId, const double vtAx[3], double dAngDeg) +{ + return ( ExeRotatePartInRawPart( nRawId, vtAx, dAngDeg) ? TRUE : FALSE) ; +} + //----------------------------------------------------------------------------- // Table & Fixtures //----------------------------------------------------------------------------- diff --git a/EgtInterface.rc b/EgtInterface.rc index 4c4f8bd..268f208 100644 Binary files a/EgtInterface.rc and b/EgtInterface.rc differ