From 0d0fccf1d461d6cdbbde7ce6df71066f76e61573 Mon Sep 17 00:00:00 2001 From: DarioS Date: Sun, 1 Aug 2021 17:14:27 +0200 Subject: [PATCH] Include : - a ISurfTriMesh::DoSewing aggiunto parametro opzionale dTol (default 2*EPS_SMALL). --- EGkSurfTriMesh.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EGkSurfTriMesh.h b/EGkSurfTriMesh.h index ff07308..97adc87 100644 --- a/EGkSurfTriMesh.h +++ b/EGkSurfTriMesh.h @@ -53,7 +53,7 @@ class __declspec( novtable) ISurfTriMesh : public ISurf virtual bool CreateByScrewing( const PolyLine& PL, const Point3d& ptAx, const Vector3d& vtAx, double dAngRot, double dStepRot, double dMove) = 0 ; virtual bool DoCompacting( double dTol = EPS_SMALL) = 0 ; - virtual bool DoSewing( const ISurfTriMesh& stmOther, const Frame3d& frOther = GLOB_FRM) = 0 ; + virtual bool DoSewing( const ISurfTriMesh& stmOther, const Frame3d& frOther = GLOB_FRM, double dTol = 2 * EPS_SMALL) = 0 ; virtual int GetVertexCount( void) const = 0 ; virtual int GetTriangleCount( void) const = 0 ; virtual int GetTriangleCount( int nTFlag) const = 0 ;