Include :

- aggiornamento prototipi.
This commit is contained in:
Dario Sassi
2017-08-07 18:30:14 +00:00
parent ffedd04e42
commit b6db987ec7
3 changed files with 20 additions and 2 deletions
+8 -1
View File
@@ -871,11 +871,13 @@ EXE_EXPORT bool ExeGetGenericView( double* pdAngVertDeg, double* pdAngHorizDeg)
EXE_EXPORT bool ExeGetViewUp( Vector3d& vtUp) ;
EXE_EXPORT bool ExeProjectPoint( const Point3d& ptP, Point3d& ptWin) ;
EXE_EXPORT bool ExeUnProjectPoint( int nWinX, int nWinY, Point3d& ptP) ;
EXE_EXPORT bool ExeSetTextureMaxLinPixels( int nMaxLinPix) ;
EXE_EXPORT bool ExeLoadTexture( const std::string& sName, const std::string& sFile,
double dMMxPix, double dDimX, double dDimY, int nRepeat) ;
EXE_EXPORT bool ExeUnloadTexture( const std::string& sName) ;
EXE_EXPORT bool ExeExistsTexture( const std::string& sName) ;
EXE_EXPORT bool ExeGetTexturePixels( const std::string& sName, int& nWidth, int& nHeight) ;
EXE_EXPORT bool ExeGetTextureImagePixels( const std::string& sName, int& nWidth, int& nHeight) ;
EXE_EXPORT bool ExeGetTextureDimensions( const std::string& sName, double& dDimX, double& dDimY) ;
EXE_EXPORT bool ExeChangeTextureDimensions( const std::string& sName, double dDimX, double dDimY) ;
EXE_EXPORT bool ExeGetImage( int nShowMode, Color colBackTop, Color colBackBottom,
@@ -888,13 +890,18 @@ EXE_EXPORT bool ExeGetImagePixels( const std::string& sFile, int& nPixelX, int&
EXE_EXPORT int ExeAddPhoto( const std::string& sName, const std::string& sPath,
const Point3d& ptOri, const Point3d& ptCen, double dMMxPixel,
int nParentId, const Point3d& ptMin, const Point3d& ptMax) ;
EXE_EXPORT int ExeAddPhoto( const std::string& sName, const std::string& sPath,
const Point3d& ptOri, const Point3d& ptCen, double dDimX, double dDimY,
int nParentId, const Point3d& ptMin, const Point3d& ptMax) ;
EXE_EXPORT bool ExeMovePhoto( int nId, const Vector3d& vtMove) ;
EXE_EXPORT bool ExeRotatePhoto( int nId, const Point3d& ptAx, const Vector3d& vtAx, double dAngDeg) ;
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) ;
EXE_EXPORT bool ExeGetPhotoDimensions( int nId, double& dDimX, double& dDimY) ;
EXE_EXPORT bool ExeGetPhotoPixels( int nId, int& nPixelX, int& nPixelY) ;
EXE_EXPORT bool ExeGetPhotoImagePixels( int nId, int& nPixelX, int& nPixelY) ;
// Messages
EXE_EXPORT bool ExeLoadMessages( const std::string& sMsgFilePath) ;