Tiny indentation fix

This commit is contained in:
Mael Rouxel-Labbé 2022-03-15 00:46:39 +01:00
parent 3182689f30
commit 8d95d22a9e
1 changed files with 3 additions and 2 deletions

View File

@ -1811,7 +1811,8 @@ namespace CommonKernelFunctors {
{
CGAL_kernel_precondition(! K().collinear_3_object()(p,q,r) );
Vector_3 res = CGAL::cross_product(q-p, r-p);
return res; }
return res;
}
};
template <typename K>
@ -2578,7 +2579,7 @@ namespace CommonKernelFunctors {
Vector_3 res = CGAL::cross_product(q-p, r-p);
res = res / CGAL::sqrt(res.squared_length());
return res;
}
}
};
template <typename K>