From fc5df6779f312510bc82d48152ab069c81c75fff Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Tue, 7 Jan 2020 18:17:02 +0000 Subject: [PATCH] Include : - aggiornamento prototipi. --- EGkStmStandard.h | 2 +- EXeExecutor.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/EGkStmStandard.h b/EGkStmStandard.h index 6720fa8..f24550e 100644 --- a/EGkStmStandard.h +++ b/EGkStmStandard.h @@ -24,7 +24,7 @@ #endif //---------------------------------------------------------------------------- -EGK_EXPORT ISurfTriMesh* GetSurfTriMeshBox( double dDimX, double dDimY, double dHeight) ; +EGK_EXPORT ISurfTriMesh* GetSurfTriMeshBox( double dDimX, double dDimY, double dHeight, bool bRegular = false) ; EGK_EXPORT ISurfTriMesh* GetSurfTriMeshPyramid( double dDimX, double dDimY, double dHeight) ; EGK_EXPORT ISurfTriMesh* GetSurfTriMeshCylinder( double dRadius, double dHeight, double dLinTol) ; EGK_EXPORT ISurfTriMesh* GetSurfTriMeshCone( double dRadius, double dHeight, double dLinTol) ; diff --git a/EXeExecutor.h b/EXeExecutor.h index 6936ef0..9acdbed 100644 --- a/EXeExecutor.h +++ b/EXeExecutor.h @@ -261,9 +261,9 @@ EXE_EXPORT int ExeCreateSurfFrStadium( int nParentId, const Point3d& ptIni, con EXE_EXPORT int ExeCreateSurfFrDisk( int nParentId, const Point3d& ptOrig, double dRad, int nRefType) ; EXE_EXPORT int ExeCreateSurfTmPlaneInBBox( int nParentId, const Point3d& ptP, const Vector3d& vtN, const BBox3d& b3Box, int nRefType) ; EXE_EXPORT int ExeCreateSurfTmConvexHullInBBox( int nParentId, int nId, const BBox3d& b3Box, int nRefType) ; -EXE_EXPORT int ExeCreateSurfTmBBox( int nParentId, const BBox3d& b3Box, int nRefType) ; +EXE_EXPORT int ExeCreateSurfTmBBox( int nParentId, const BBox3d& b3Box, bool bRegular, int nRefType) ; EXE_EXPORT int ExeCreateSurfTmBox( int nParentId, const Point3d& ptIni, const Point3d& ptCross, - const Point3d& ptDir, double dHeight, int nRefType) ; + const Point3d& ptDir, double dHeight, bool bRegular, int nRefType) ; EXE_EXPORT int ExeCreateSurfTmPyramid( int nParentId, const Point3d& ptIni, const Point3d& ptCross, const Point3d& ptDir, double dHeight, int nRefType) ; EXE_EXPORT int ExeCreateSurfTmCylinder( int nParentId, const Point3d& ptOrig, const Vector3d& vtN,