Include : modifiche per versioni a 64bit.
This commit is contained in:
+1
-1
@@ -47,7 +47,7 @@ class DistPointCurve
|
||||
public :
|
||||
EGK_EXPORT bool GetSqDist( double& dSqDist) ;
|
||||
EGK_EXPORT bool GetDist( double& dDist) ;
|
||||
EGK_EXPORT int GetNbrMinDist( void) { return m_Info.size() ; }
|
||||
EGK_EXPORT int GetNbrMinDist( void) { return (int) m_Info.size() ; }
|
||||
EGK_EXPORT bool GetMinDistPoint( int nInd, Point3d& ptMinDist, int& nFlag) ;
|
||||
EGK_EXPORT bool GetMinDistPoint( double dNearParam, Point3d& ptMinDist, int& nFlag) ;
|
||||
EGK_EXPORT bool GetParamAtMinDistPoint( int nInd, double& dParam, int& nFlag) ;
|
||||
|
||||
+13
-5
@@ -17,9 +17,17 @@
|
||||
#define EGTLIBDIR "/EgtDev/Lib/"
|
||||
|
||||
// Dichiarazione suffisso librerie
|
||||
#if defined( _DEBUG)
|
||||
#define EGTLIBVER "D32"
|
||||
#else
|
||||
#define EGTLIBVER "R32"
|
||||
#endif
|
||||
#if defined( _WIN64)
|
||||
#if defined( _DEBUG)
|
||||
#define EGTLIBVER "D64"
|
||||
#else
|
||||
#define EGTLIBVER "R64"
|
||||
#endif
|
||||
#elif defined( _WIN32)
|
||||
#if defined( _DEBUG)
|
||||
#define EGTLIBVER "D32"
|
||||
#else
|
||||
#define EGTLIBVER "R32"
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user