From cdbc40c5529b9617abbea5ba4a8db5e70e5a925d Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Thu, 18 Feb 2016 18:47:21 +0000 Subject: [PATCH] Include : - aggiornamento. --- EInAPI.h | 3 +++ EXeExecutor.h | 3 +++ 2 files changed, 6 insertions(+) diff --git a/EInAPI.h b/EInAPI.h index cd8d62e..f204a2b 100644 --- a/EInAPI.h +++ b/EInAPI.h @@ -685,6 +685,9 @@ EIN_EXPORT int __stdcall EgtAddPhoto( const wchar_t* wsName, const wchar_t* wsF int nParentId, const double ptMin[3], const double ptMax[3]) ; EIN_EXPORT BOOL __stdcall EgtGetPhotoPath( int nId, wchar_t*& wsFile) ; EIN_EXPORT BOOL __stdcall EgtChangePhotoPath( int nId, const wchar_t* wsFile) ; +EIN_EXPORT BOOL __stdcall EgtGetPhotoOrigin( int nId, double ptOri[3]) ; +EIN_EXPORT BOOL __stdcall EgtGetPhotoCenter( int nId, double ptCen[3]) ; +EIN_EXPORT BOOL __stdcall EgtGetPhotoMMxPixel( int nId, double* pdMMxPixel) ; // Geo Base EIN_EXPORT BOOL __stdcall EgtVectorNormalize( double* pdX, double* pdY, double* pdZ, double dEps = 0.001) ; diff --git a/EXeExecutor.h b/EXeExecutor.h index a379f33..bf6abc3 100644 --- a/EXeExecutor.h +++ b/EXeExecutor.h @@ -748,6 +748,9 @@ EXE_EXPORT int ExeAddPhoto( const std::string& sName, const std::string& sPath, int nParentId, const Point3d& ptMin, const Point3d& ptMax) ; EXE_EXPORT bool ExeGetPhotoPath( int nId, std::string& sPath) ; EXE_EXPORT bool ExeChangePhotoPath( int nId, const std::string& sPath) ; +EXE_EXPORT bool ExeGetPhotoOrigin( int nId, Point3d& ptOri) ; +EXE_EXPORT bool ExeGetPhotoCenter( int nId, Point3d& ptCen) ; +EXE_EXPORT bool ExeGetPhotoMMxPixel( int nId, double& dMMxPixel) ; // Messages EXE_EXPORT bool ExeLoadMessages( const std::string& sMsgFilePath) ;