From 360c3c1ab15a6af2c7721edc1fa65ea5782df59b Mon Sep 17 00:00:00 2001 From: Riccardo Elitropi Date: Wed, 15 May 2024 11:03:33 +0200 Subject: [PATCH] Include : - aggiunti prototipi. --- EGkVolZmap.h | 2 ++ EXeExecutor.h | 2 ++ 2 files changed, 4 insertions(+) diff --git a/EGkVolZmap.h b/EGkVolZmap.h index 27966e9..bcd4e29 100644 --- a/EGkVolZmap.h +++ b/EGkVolZmap.h @@ -88,6 +88,8 @@ class __declspec( novtable) IVolZmap : public IGeoObj virtual IVolZmap* ClonePart( int nPart) const = 0 ; virtual bool RemovePart( int nPart) = 0 ; virtual int GetPartMinDistFromPoint( const Point3d& ptP) const = 0 ; + virtual bool AddSurfTm( const ISurfTriMesh* pStm) = 0 ; + virtual bool MakeUniform( double dToler) = 0 ; } ; //----------------------------------------------------------------------------- diff --git a/EXeExecutor.h b/EXeExecutor.h index f0d14cd..53bbeb1 100644 --- a/EXeExecutor.h +++ b/EXeExecutor.h @@ -382,6 +382,8 @@ EXE_EXPORT int ExeCreateVolZmapEmpty( int nParentId, const Point3d& ptIni, doub double dDimY, double dDimZ, double dPrec, bool bTriDex, int nRefType) ; EXE_EXPORT int ExeCreateVolZmapByRegionExtrusion( int nParentId, int nSfrId, double dDimZ, double dPrec, bool bTriDex) ; EXE_EXPORT int ExeCreateVolZmapFromSurfTm( int nParentId, int nStmId, double dPrec, bool bTriDex) ; +EXE_EXPORT bool ExeUpdateVolZmapByAddingSurfTm( int nVolZmapId, int nStmId) ; +EXE_EXPORT bool ExeUniformVolZmap( int nVolZmapId, double dToler) ; // GeomDB PartLayer EXE_EXPORT bool ExeIsPart( int nPartId) ;