From 36ce8620549d1a0f2ebaf1f1a3e0f443c2ca1eca Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Fri, 28 Mar 2025 20:16:47 +0100 Subject: [PATCH] Include : - aggiornamento prototipi. --- EGkSurfTriMesh.h | 5 +++-- EXeExecutor.h | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/EGkSurfTriMesh.h b/EGkSurfTriMesh.h index 37e61c7..ca0e9fb 100644 --- a/EGkSurfTriMesh.h +++ b/EGkSurfTriMesh.h @@ -1,7 +1,7 @@ //---------------------------------------------------------------------------- -// EgalTech 2014-2024 +// EgalTech 2014-2025 //---------------------------------------------------------------------------- -// File : EGkSurfTriMesh.h Data : 05.03.24 Versione : 2.6c2 +// File : EGkSurfTriMesh.h Data : 28.03.25 Versione : 2.7c4 // Contenuto : Dichiarazione della interfaccia ISurfTriMesh. // // @@ -50,6 +50,7 @@ class __declspec( novtable) ISurfTriMesh : public ISurf virtual bool RemoveTriangle( int nId) = 0 ; virtual bool AdjustTopology( void) = 0 ; virtual bool CreateByFlatContour( const PolyLine& PL) = 0 ; + virtual bool CreateByPolygonWithHoles( const POLYLINEVECTOR& vPL) = 0 ; virtual bool CreateByExtrusion( const PolyLine& PL, const Vector3d& vtExtr) = 0 ; virtual bool CreateByPointCurve( const Point3d& ptP, const PolyLine& PL) = 0 ; virtual bool CreateByTwoCurves( const PolyLine& PL1, const PolyLine& PL2, int nRuledType) = 0 ; diff --git a/EXeExecutor.h b/EXeExecutor.h index 0d3dd4f..1461092 100644 --- a/EXeExecutor.h +++ b/EXeExecutor.h @@ -355,6 +355,7 @@ EXE_EXPORT int ExeCreateSurfTmConeFrustum( int nParentId, double dBaseRad, doub EXE_EXPORT int ExeCreateSurfTmTriangle( int nParentId, const Point3d& ptP1, const Point3d& ptP2, const Point3d& ptP3, int nRefType) ; EXE_EXPORT int ExeCreateSurfTmRectangle( int nParentId, const Point3d& ptO, const Point3d& ptL, const Point3d& ptT, int nRefType) ; EXE_EXPORT int ExeCreateSurfTmByPolygon( int nParentId, const PolyLine& PL, int nRefType) ; +EXE_EXPORT int ExeCreateSurfTmByPolygonWithHoles( int nParentId, const POLYLINEVECTOR& vPL, int nRefType) ; EXE_EXPORT int ExeCreateSurfTmByFlatContour( int nParentId, int nCrvId, double dLinTol) ; EXE_EXPORT int ExeCreateSurfTmByRegion( int nParentId, const INTVECTOR& vCrvIds, double dLinTol) ; EXE_EXPORT int ExeCreateSurfTmByExtrusion( int nParentId, const INTVECTOR& vCrvIds, const Vector3d& vtExtr,