diff --git a/EInAPI.h b/EInAPI.h index 6a97b85..22a4b12 100644 --- a/EInAPI.h +++ b/EInAPI.h @@ -255,8 +255,9 @@ EIN_EXPORT BOOL __stdcall EgtSelectPathObjs( int nId, BOOL bHaltOnFork) ; // GeomDB Objects EIN_EXPORT BOOL __stdcall EgtExistsObj( int nId) ; EIN_EXPORT int __stdcall EgtGetParent( int nId) ; -EIN_EXPORT BOOL __stdcall EgtGetGroupGlobFrame( int nId, double ptOrig[3], double vtX[3], double vtY[3], double vtZ[3]) ; -EIN_EXPORT int __stdcall EgtGetGroupObjs( int nId) ; +EIN_EXPORT BOOL __stdcall EgtGetGlobFrame( int nId, double ptOrig[3], double vtX[3], double vtY[3], double vtZ[3]) ; +EIN_EXPORT BOOL __stdcall EgtGetGroupGlobFrame( int nGroupId, double ptOrig[3], double vtX[3], double vtY[3], double vtZ[3]) ; +EIN_EXPORT int __stdcall EgtGetGroupObjs( int nGroupId) ; EIN_EXPORT int __stdcall EgtGetFirstInGroup( int nGroupId) ; EIN_EXPORT int __stdcall EgtGetNext( int nId) ; EIN_EXPORT int __stdcall EgtGetLastInGroup( int nGroupId) ; diff --git a/EXeExecutor.h b/EXeExecutor.h index e987e46..a75e4dd 100644 --- a/EXeExecutor.h +++ b/EXeExecutor.h @@ -282,6 +282,7 @@ EXE_EXPORT bool ExeSelectPathObjs( int nId, bool bHaltOnFork) ; // GeomDB Objects EXE_EXPORT bool ExeExistsObj( int nId) ; EXE_EXPORT int ExeGetParent( int nId) ; +EXE_EXPORT bool ExeGetGlobFrame( int nId, Frame3d& frGlob) ; EXE_EXPORT bool ExeGetGroupGlobFrame( int nId, Frame3d& frGlob) ; EXE_EXPORT int ExeGetGroupObjs( int nId) ; EXE_EXPORT int ExeGetFirstInGroup( int nGroupId) ;