Merge pull request #7650 from sloriot/K23-compare_dihedral_angle_deg_tet

Be more permissive in Compare_dihedral_angle_3
This commit is contained in:
Laurent Rineau 2023-08-28 15:43:59 +02:00
commit ef998bded5
1 changed files with 1 additions and 0 deletions

View File

@ -287,6 +287,7 @@ namespace CommonKernelFunctors {
const Vector_3 abac1 = xproduct(ab1, ac1); const Vector_3 abac1 = xproduct(ab1, ac1);
const Vector_3 abad1 = xproduct(ab1, ad1); const Vector_3 abad1 = xproduct(ab1, ad1);
if (abac1==NULL_VECTOR || abad1==NULL_VECTOR) return SMALLER;
const FT sc_prod_1 = abac1 * abad1; const FT sc_prod_1 = abac1 * abad1;
CGAL_kernel_assertion_msg( abac1 != NULL_VECTOR, CGAL_kernel_assertion_msg( abac1 != NULL_VECTOR,