From 822eb814672fbb73240143e4129a8be26ce44b39 Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Mon, 23 Oct 2017 06:49:23 +0000 Subject: [PATCH] Include : - aggiornamento prototipi. --- EGkVolZmap.h | 2 +- EXeExecutor.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/EGkVolZmap.h b/EGkVolZmap.h index b6ed2f3..da0f50b 100644 --- a/EGkVolZmap.h +++ b/EGkVolZmap.h @@ -46,7 +46,7 @@ class __declspec( novtable) IVolZmap : public IGeoObj virtual bool SetGenTool( const std::string& sToolName, const ICurveComposite* pToolOutline) = 0 ; virtual bool MillingStep( const Point3d& ptPs, const Vector3d& vtDs, const Point3d& ptPe, const Vector3d& vtDe) = 0 ; virtual bool MillingStep( const Point3d& ptPs, const Vector3d& vtDs, const Vector3d& vtAs, const Point3d& ptPe, const Vector3d& vtDe, const Vector3d& vtAe) = 0 ; - virtual bool GetDepth( const Point3d& ptP, const Vector3d& vtDir, double& dInLength, double& dOutLength) const = 0 ; + virtual bool GetDepth( const Point3d& ptP, const Vector3d& vtDir, double& dInLength, double& dOutLength, bool bExact) const = 0 ; virtual bool AvoidBox( const Frame3d& frBox, const Vector3d& vtDiag) const = 0 ; virtual IVolZmap* ClonePart( int nPart) const = 0 ; virtual bool RemovePart( int nPart) = 0 ; diff --git a/EXeExecutor.h b/EXeExecutor.h index 2f96a1d..3858130 100644 --- a/EXeExecutor.h +++ b/EXeExecutor.h @@ -486,7 +486,7 @@ EXE_EXPORT bool ExeVolZmapMillingStep( int nId, const Point3d& ptPs, const Vecto const Point3d& ptPe, const Vector3d& vtD, int nRefTypee) ; EXE_EXPORT bool ExeVolZmapMillingStep( int nId, const Point3d& ptPs, const Vector3d& vtDs, const Vector3d& vtAs, const Point3d& ptPe, const Vector3d& vtDe, const Vector3d& vtAe, int nRefType) ; -EXE_EXPORT bool ExeVolZmapGetDepth( int nId, const Point3d& ptP, const Vector3d& vtDir, int nRefType, +EXE_EXPORT bool ExeVolZmapGetDepth( int nId, const Point3d& ptP, const Vector3d& vtDir, int nRefType, bool bExact, double& dInLen, double& dOutLen) ; EXE_EXPORT bool ExeVolZmapAvoidBox( int nId, const Frame3d& frBox, const Vector3d& vtDiag, int nRefType) ;