Type explicitation

This commit is contained in:
Camille GOUTTEBROZE 2014-08-26 14:03:04 +02:00
parent 65227b3e7d
commit 215e3e9b92

View File

@ -859,11 +859,11 @@ bool EntityGUI_FeatureDetectorDlg::execute( ObjectList& objects )
double u_v_det = (it->x - it_previous->x) * (it_next->y - it->y) -
(it->y - it_previous->y) * (it_next->x - it->x);
double norme_u = sqrt ( (it->x - it_previous->x)*(it->x - it_previous->x) +
(it->y - it_previous->y)*(it->y - it_previous->y) );
double norme_u = sqrt ( double(it->x - it_previous->x) * double(it->x - it_previous->x) +
double(it->y - it_previous->y) * double(it->y - it_previous->y) );
double norme_v = sqrt ( (it->x - it_next->x)*(it->x - it_next->x) +
(it->y - it_next->y)*(it->y - it_next->y) );
double norme_v = sqrt ( double(it->x - it_next->x) * double(it->x - it_next->x) +
double(it->y - it_next->y) * double(it->y - it_next->y) );
double u_v_sinus = u_v_det / (norme_u * norme_v);