EgtInterface :

- aggiunta interfaccia per EgtMoveCurveCompoCurve.
This commit is contained in:
Dario Sassi
2021-04-05 16:26:18 +00:00
parent 63e9f18309
commit fb29f4d961
+21
View File
@@ -293,6 +293,27 @@ __stdcall EgtRemoveCurveCompoJoint( int nId, int nU)
return ( ExeRemoveCurveCompoJoint( nId, nU) ? TRUE : FALSE) ;
}
//-------------------------------------------------------------------------------
BOOL
__stdcall EgtMoveCurveCompoCurve( int nId, int nCrv, const double vtMove[3], int nRefType)
{
return ( ExeMoveCurveCompoCurve( nId, nCrv, vtMove, nRefType) ? TRUE : FALSE) ;
}
//-------------------------------------------------------------------------------
BOOL
__stdcall EgtModifyCurveCompoCurveToArc( int nId, int nCrv, const double ptP[3], int nRefType)
{
return ( ExeModifyCurveCompoCurveToArc( nId, nCrv, ptP, nRefType) ? TRUE : FALSE) ;
}
//-------------------------------------------------------------------------------
BOOL
__stdcall EgtModifyCurveCompoCurveToLine( int nId, int nCrv)
{
return ( ExeModifyCurveCompoCurveToLine( nId, nCrv) ? TRUE : FALSE) ;
}
//-------------------------------------------------------------------------------
int
__stdcall EgtExplodeCurveCompo( int nId, int* pnCount)