From 779569644bd49b673b375e6871e5a9269770b341 Mon Sep 17 00:00:00 2001 From: Daniele Bariletti Date: Tue, 21 Oct 2025 12:26:02 +0200 Subject: [PATCH] Include : - aggiornata la chiamata a GetApproxSurf per le bezier. --- EGkSurfBezier.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EGkSurfBezier.h b/EGkSurfBezier.h index c28a2b0..cafefe3 100644 --- a/EGkSurfBezier.h +++ b/EGkSurfBezier.h @@ -79,7 +79,7 @@ class __declspec( novtable) ISurfBezier : public ISurf virtual bool GetControlCurveOnV( int nIndU, PolyLine& plCtrlV) const = 0 ; virtual const ISurfTriMesh* GetAuxSurf( void) const = 0 ; virtual const ISurfTriMesh* GetAuxSurfRefined( void) const = 0 ; - virtual ISurfTriMesh* GetApproxSurf( double dTol, double dSideMin = 100 * EPS_SMALL) const = 0 ; + virtual ISurfTriMesh* GetApproxSurf( double dTol, double dSideMin = 100 * EPS_SMALL, bool bUpdateEdges = false) const = 0 ; virtual bool GetLeaves ( std::vector>& vLeaves) const = 0 ; virtual bool GetTriangles2D( std::vector>& vTria2D) const = 0 ; virtual bool UnprojectPointFromStm( int nT, const Point3d& ptI, Point3d& ptSP, int nIL) const = 0 ;