EgtInterface 2.2k5 :

- aggiunta interfaccia funzione EgtTransform.
This commit is contained in:
Dario Sassi
2020-11-24 19:37:28 +00:00
parent 12ee3db32a
commit 1a2eab8608
2 changed files with 13 additions and 0 deletions
+13
View File
@@ -19,6 +19,19 @@
using namespace std ;
//-------------------------------------------------------------------------------
BOOL
__stdcall EgtTransform( int nId, const double ptOrig[3],
const double vX[3], const double vY[3], const double vZ[3], int nRefType)
{
INTVECTOR vIds ;
vIds.push_back( nId) ;
Frame3d frFrame ;
if ( ! frFrame.Set( ptOrig, vX, vY, vZ))
return GDB_ID_NULL ;
return ExeTransform( vIds, frFrame, nRefType) ;
}
//-------------------------------------------------------------------------------
BOOL
__stdcall EgtMove( int nId, double vVtMove[3], int nRefType)