From 95884231274a3b0e31502e188664a66426e4fe82 Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Wed, 6 Jul 2016 16:05:55 +0000 Subject: [PATCH] EgtInterface : - aggiornamenti. --- API_GeoSnap.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/API_GeoSnap.cpp b/API_GeoSnap.cpp index 96e36d2..268776d 100644 --- a/API_GeoSnap.cpp +++ b/API_GeoSnap.cpp @@ -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)