mirror of https://github.com/CGAL/cgal
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:
commit
ef998bded5
|
|
@ -287,6 +287,7 @@ namespace CommonKernelFunctors {
|
|||
|
||||
const Vector_3 abac1 = xproduct(ab1, ac1);
|
||||
const Vector_3 abad1 = xproduct(ab1, ad1);
|
||||
if (abac1==NULL_VECTOR || abad1==NULL_VECTOR) return SMALLER;
|
||||
const FT sc_prod_1 = abac1 * abad1;
|
||||
|
||||
CGAL_kernel_assertion_msg( abac1 != NULL_VECTOR,
|
||||
|
|
|
|||
Loading…
Reference in New Issue