EgtInterface 1.6o3 :

- aggiornamenti vari.
This commit is contained in:
Dario Sassi
2016-03-29 09:09:13 +00:00
parent 46bc4842ff
commit 33603e5961
4 changed files with 98 additions and 1 deletions
+35
View File
@@ -49,6 +49,13 @@ __stdcall EgtApproxCurve( int nId, int nApprType, double dLinTol)
return ( ExeApproxCurve( nId, nApprType, dLinTol) ? TRUE : FALSE) ;
}
//-------------------------------------------------------------------------------
BOOL
__stdcall EgtProjectCurveOnPlane( int nId, const double ptP[3], const double vtN[3], int nRefType)
{
return ( ExeProjectCurveOnPlane( nId, ptP, vtN, nRefType) ? TRUE : FALSE) ;
}
//----------------------------------------------------------------------------
BOOL
__stdcall EgtChangeClosedCurveStartPoint( int nId, const double ptP[3], int nRefType)
@@ -186,6 +193,34 @@ __stdcall EgtModifyArc3P( int nId, const double ptMid[3], int nRefType)
return ( ExeModifyArc3P( nId, ptMid, nRefType) ? TRUE : FALSE) ;
}
//-------------------------------------------------------------------------------
BOOL
__stdcall EgtCloseCurveCompo( int nId)
{
return ( ExeCloseCurveCompo( nId) ? TRUE : FALSE) ;
}
//-------------------------------------------------------------------------------
BOOL
__stdcall EgtAddCurveCompoLine( int nId, const double ptP[3], int nRefType)
{
return ( ExeAddCurveCompoLine( nId, ptP, nRefType) ? TRUE : FALSE) ;
}
//-------------------------------------------------------------------------------
BOOL
__stdcall EgtAddCurveCompoArcTg( int nId, const double ptP[3], int nRefType)
{
return ( ExeAddCurveCompoArcTg( nId, ptP, nRefType) ? TRUE : FALSE) ;
}
//-------------------------------------------------------------------------------
BOOL
__stdcall EgtAddCurveCompoArc2P( int nId, const double ptMid[3], const double ptP[3], int nRefType)
{
return ( ExeAddCurveCompoArc2P( nId, ptMid, ptP, nRefType) ? TRUE : FALSE) ;
}
//-------------------------------------------------------------------------------
BOOL
__stdcall EgtAddCurveCompoJoint( int nId, double dU)