From b6a535a3b7627a4608c291212071771dcccdf243 Mon Sep 17 00:00:00 2001 From: Daniele Bariletti Date: Mon, 16 Mar 2026 17:00:20 +0100 Subject: [PATCH] Include : - aggiunto parametro alla GetSide della DistPointCurve. --- EGkDistPointCurve.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EGkDistPointCurve.h b/EGkDistPointCurve.h index a41b50a..3d7deef 100644 --- a/EGkDistPointCurve.h +++ b/EGkDistPointCurve.h @@ -63,8 +63,8 @@ class DistPointCurve EGK_EXPORT bool GetMinDistPoint( double dNearParam, Point3d& ptMinDist, int& nFlag) const ; EGK_EXPORT bool GetParamAtMinDistPoint( int nInd, double& dParam, int& nFlag) const ; EGK_EXPORT bool GetParamAtMinDistPoint( double dNearParam, double& dParam, int& nFlag) const ; - EGK_EXPORT bool GetSideAtMinDistPoint( int nInd, const Vector3d& vtN, int& nSide) const ; - EGK_EXPORT bool GetSideAtMinDistPoint( double dNearParam, const Vector3d& vtN, int& nSide) const ; + EGK_EXPORT bool GetSideAtMinDistPoint( int nInd, const Vector3d& vtN, int& nSide, double dTol = EPS_SMALL) const ; + EGK_EXPORT bool GetSideAtMinDistPoint( double dNearParam, const Vector3d& vtN, int& nSide, double dTol = EPS_SMALL) const ; EGK_EXPORT bool GetMinDistInfo( int nInd, MinDistPCInfo& aInfo) const ; private :