Undo change

This commit is contained in:
Andreas Fabri 2025-09-29 14:20:39 +01:00
parent fad48f7305
commit 92dc53c58a
1 changed files with 1 additions and 1 deletions

View File

@ -2650,7 +2650,7 @@ namespace CommonKernelFunctors {
{ {
CGAL_kernel_precondition(! K().collinear_3_object()(p,q,r) ); CGAL_kernel_precondition(! K().collinear_3_object()(p,q,r) );
Vector_3 res = CGAL::cross_product(q-p, r-p); Vector_3 res = CGAL::cross_product(q-p, r-p);
res = res / sqrt(res.squared_length()); res = res / CGAL::sqrt(res.squared_length());
return res; return res;
} }
}; };