EgtInterface :

- aggiornamenti ad interfacce.
This commit is contained in:
Dario Sassi
2016-02-22 07:35:47 +00:00
parent c9738c189b
commit 14be608b6b
3 changed files with 74 additions and 18 deletions
+21
View File
@@ -186,6 +186,27 @@ __stdcall EgtModifyArc3P( int nId, const double ptMid[3], int nRefType)
return ( ExeModifyArc3P( nId, ptMid, nRefType) ? TRUE : FALSE) ;
}
//-------------------------------------------------------------------------------
BOOL
__stdcall EgtAddCurveCompoJoint( int nId, double dU)
{
return ( ExeAddCurveCompoJoint( nId, dU) ? TRUE : FALSE) ;
}
//-------------------------------------------------------------------------------
BOOL
__stdcall EgtModifyCurveCompoJoint( int nId, int nU, const double ptP[3], int nRefType)
{
return ( ExeModifyCurveCompoJoint( nId, nU, ptP, nRefType) ? TRUE : FALSE) ;
}
//-------------------------------------------------------------------------------
BOOL
__stdcall EgtRemoveCurveCompoJoint( int nId, int nU)
{
return ( ExeRemoveCurveCompoJoint( nId, nU) ? TRUE : FALSE) ;
}
//-------------------------------------------------------------------------------
int
__stdcall EgtExplodeCurveCompo( int nId, int* pnCount)