EgtInterface 1.6h1 :

- aggiunta interfaccia per funzioni Nesting
- aggiunta interfaccia per iterazione all'indietro su pezzi e layer.
This commit is contained in:
Dario Sassi
2015-08-04 17:49:18 +00:00
parent a8c0bd30e8
commit a0f4898de2
6 changed files with 73 additions and 7 deletions
+7 -7
View File
@@ -35,6 +35,13 @@ __stdcall EgtOffsetCurve( int nId, double dDist, int nType)
return ( ExeOffsetCurve( nId, dDist, nType) ? TRUE : FALSE) ;
}
//-------------------------------------------------------------------------------
BOOL
__stdcall EgtApproxCurve( int nId, int nApprType, double dLinTol)
{
return ( ExeApproxCurve( nId, nApprType, dLinTol) ? TRUE : FALSE) ;
}
//----------------------------------------------------------------------------
BOOL
__stdcall EgtChangeClosedCurveStartPoint( int nId, const double ptP[3], int nRefType)
@@ -178,10 +185,3 @@ __stdcall EgtExplodeCurveCompo( int nId, int* pnCount)
{
return ExeExplodeCurveCompo( nId, pnCount) ;
}
//-------------------------------------------------------------------------------
int
__stdcall EgtApproxCurve( int nId, int nApprType, double dLinTol)
{
return ExeApproxCurve( nId, nApprType, dLinTol) ;
}