Include :

- modifica interfaccia di Normalize di Vector3d.
This commit is contained in:
Dario Sassi
2014-04-07 07:02:55 +00:00
parent caa70b1751
commit 3fbf6de599
+1 -1
View File
@@ -72,7 +72,7 @@ class EGK_EXPORT Vector3d
const Vector3d& operator /=( double dDiv)
{ double dMul = 1 / dDiv ; this->x *= dMul ; this->y *= dMul ; this->z *= dMul ; return *this ; }
void ToSpherical( double* pdLen, double* pdAngVertDeg, double* pdAngOrizzDeg) const ;
bool Normalize( void) ;
bool Normalize( double dEps = EPS_SMALL) ;
bool Rotate( const Vector3d& vtAx, double dAngRad) ;
bool Rotate( const Vector3d& vtAx, double dCosAng, double dSinAng) ;
bool Scale( const Frame3d& frRef, double dCoeffX, double dCoeffY, double dCoeffZ) ;