EgtInterface :

- aggiornamenti.
This commit is contained in:
Dario Sassi
2016-07-06 16:05:55 +00:00
parent 68767be143
commit 9588423127
+14
View File
@@ -288,6 +288,20 @@ __stdcall EgtCurveThickness( int nId, double* pdThick)
return ( ExeCurveThickness( nId, pdThick) ? TRUE : FALSE) ;
}
//----------------------------------------------------------------------------
BOOL
__stdcall EgtCurveSelfIntersCount( int nId, int* pnCount)
{
return ( ExeCurveSelfIntersCount( nId, pnCount) ? TRUE : FALSE) ;
}
//----------------------------------------------------------------------------
int
__stdcall EgtClosedCurveClassify( int nId1, int nId2)
{
return ExeClosedCurveClassify( nId1, nId2) ;
}
//----------------------------------------------------------------------------
BOOL
__stdcall EgtGetMinDistPointCurve( const double ptP[3], int nId, double* pdDist, double* pdU)