Corrected a syntax error in stabledot

This commit is contained in:
Paolo Cignoni 2007-01-18 01:27:44 +00:00
parent 13a26e1b89
commit 97ae6e35ed
1 changed files with 4 additions and 1 deletions

View File

@ -24,6 +24,9 @@
History
$Log: not supported by cvs2svn $
Revision 1.9 2006/12/20 15:23:52 ganovelli
using of locally defined variable removed
Revision 1.8 2006/04/11 08:10:05 zifnab1974
changes necessary for gcc 3.4.5 on linux 64bit.
@ -620,7 +623,7 @@ public:
_v[0] *= p._v[0]; _v[1] *= p._v[1]; _v[2] *= p._v[2]; return *this; }
inline S StableDot ( const PointType & p ) const {
PointType k0(_v[0]*p._v[0], k1=_v[1]*p._v[1], k2=_v[2]*p._v[2]);
S k0=_v[0]*p._v[0], k1=_v[1]*p._v[1], k2=_v[2]*p._v[2];
int exp0,exp1,exp2;
frexp( double(k0), &exp0 );
frexp( double(k1), &exp1 );