From 90e29084c7c750fe0bb816a14cf06cfe3e1962be Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Sun, 24 Aug 2025 19:15:23 +0200 Subject: [PATCH] EgtInterface : - aggiunti prototipi EgtSetShowSurfBezierTol e EgtGetShowSurfBezierTol. --- API_Scene.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/API_Scene.cpp b/API_Scene.cpp index 83e51a0..9559761 100644 --- a/API_Scene.cpp +++ b/API_Scene.cpp @@ -312,6 +312,20 @@ __stdcall EgtGetShowTriaAdv( void) return ( ExeGetShowTriaAdv() ? TRUE : FALSE) ; } +//---------------------------------------------------------------------------- +BOOL +__stdcall EgtSetShowSurfBezierTol( double dLinTol, BOOL bRedraw) +{ + return ( ExeSetShowSurfBezierTol( dLinTol, ( bRedraw != FALSE)) ? TRUE : FALSE) ; +} + +//----------------------------------------------------------------------------- +double +__stdcall EgtGetShowSurfBezierTol( void) +{ + return ExeGetShowSurfBezierTol() ; +} + //----------------------------------------------------------------------------- BOOL __stdcall EgtSetShowZmap( int nMode, BOOL bRedraw)