Include : modifiche.

This commit is contained in:
Dario Sassi
2014-01-19 11:21:42 +00:00
parent d12edf7070
commit 76ffde6bbf
5 changed files with 6 additions and 5 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ class __declspec( novtable) IGeoObj
virtual bool Translate( const Vector3d& vtMove) = 0 ;
virtual bool Rotate( const Point3d& ptAx, const Vector3d& vtAx, double dCosAng, double dSinAng) = 0 ;
virtual bool Rotate( const Point3d& ptAx, const Vector3d& vtAx, double dAngRad) = 0 ;
virtual bool Scale( const Point3d& ptCen, double dCoeffX, double dCoeffY, double dCoeffZ) = 0 ;
virtual bool Scale( const Frame3d& frRef, double dCoeffX, double dCoeffY, double dCoeffZ) = 0 ;
virtual bool Mirror( const Point3d& ptOn, const Vector3d& vtNorm) = 0 ;
virtual bool ToGlob( const Frame3d& frRef) = 0 ;
virtual bool ToLoc( const Frame3d& frRef) = 0 ;
+1 -1
View File
@@ -51,7 +51,7 @@ class __declspec( novtable) IGeomDB
virtual bool Translate( int nId, const Vector3d& vtMove) = 0 ;
virtual bool Rotate( int nId, const Point3d& ptAx, const Vector3d& vtAx, double dCosAng, double dSinAng) = 0 ;
virtual bool Rotate( int nId, const Point3d& ptAx, const Vector3d& vtAx, double dAngDeg) = 0 ;
virtual bool Scale( int nId, const Point3d& ptCen, double dCoeffX, double dCoeffY, double dCoeffZ) = 0 ;
virtual bool Scale( int nId, const Frame3d& frRef, double dCoeffX, double dCoeffY, double dCoeffZ) = 0 ;
virtual bool Mirror( int nId, const Point3d& ptOn, const Vector3d& vtNorm) = 0 ;
} ;
+1 -1
View File
@@ -54,7 +54,7 @@ class EGK_EXPORT Point3d
void Translate( const Vector3d& vtMove) ;
bool Rotate( const Point3d& ptAx, const Vector3d& vtAx, double dAngRad) ;
bool Rotate( const Point3d& ptAx, const Vector3d& vtAx, double dCosAng, double dSinAng) ;
bool Scale( const Point3d& ptCen, double dCoeffX, double dCoeffY, double dCoeffZ) ;
bool Scale( const Frame3d& frRef, double dCoeffX, double dCoeffY, double dCoeffZ) ;
bool Mirror( const Point3d& ptOn, const Vector3d& vtNorm) ;
bool ToGlob( const Frame3d& frRef) ;
bool ToLoc( const Frame3d& frRef) ;
+1 -1
View File
@@ -74,7 +74,7 @@ class EGK_EXPORT Vector3d
bool Normalize( void) ;
bool Rotate( const Vector3d& vtAx, double dAngRad) ;
bool Rotate( const Vector3d& vtAx, double dCosAng, double dSinAng) ;
bool Scale( double dCoeffX, double dCoeffY, double dCoeffZ) ;
bool Scale( const Frame3d& frRef, double dCoeffX, double dCoeffY, double dCoeffZ) ;
bool Mirror( const Vector3d& vtNorm) ;
bool ToGlob( const Frame3d& frRef) ;
bool ToLoc( const Frame3d& frRef) ;
+2 -1
View File
@@ -22,7 +22,8 @@ class PerformanceCounter
PerformanceCounter( void)
{ QueryPerformanceFrequency( (LARGE_INTEGER*) &m_lnFreq) ;
if ( m_lnFreq <= 0)
m_lnFreq = 1 ; }
m_lnFreq = 1 ;
Start() ; }
void Start( void)
{ QueryPerformanceCounter( (LARGE_INTEGER*) &m_lnStart) ; }
double Stop( void)