EgtInterface 1.8e2 :

- aggiunte interfacce per EgtMovePartInRawPart e EgtRotatePartInRawPart.
This commit is contained in:
Dario Sassi
2017-05-09 10:58:17 +00:00
parent 06a37a0c11
commit 092b81e08a
2 changed files with 14 additions and 0 deletions
+14
View File
@@ -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
//-----------------------------------------------------------------------------