Fix erroneous description in Kernel_23::Coplanar_orienation_3

This commit is contained in:
Mael Rouxel-Labbé 2021-01-27 10:06:03 +01:00
parent 107eaba86d
commit 69d215a33e
2 changed files with 6 additions and 6 deletions

View File

@ -3692,9 +3692,9 @@ namespace CartesianKernelFunctors {
// p,q,r supposed to be non collinear
// tests whether s is on the same side of p,q as r
// returns :
// COLLINEAR if pqr collinear
// POSITIVE if qrp and qrs have the same orientation
// NEGATIVE if qrp and qrs have opposite orientations
// COLLINEAR if qps collinear
// POSITIVE if qpr and qps have the same orientation
// NEGATIVE if qpr and qps have opposite orientations
CGAL_kernel_exactness_precondition( ! cl(p, q, r) );
CGAL_kernel_exactness_precondition( cp(p, q, r, s) );
return coplanar_orientationC3(p.x(), p.y(), p.z(),

View File

@ -3837,9 +3837,9 @@ namespace HomogeneousKernelFunctors {
// p,q,r supposed to be non collinear
// tests whether s is on the same side of p,q as r
// returns :
// COLLINEAR if pqr collinear
// POSITIVE if qrp and qrs have the same orientation
// NEGATIVE if qrp and qrs have opposite orientations
// COLLINEAR if qps collinear
// POSITIVE if qpr and qps have the same orientation
// NEGATIVE if qpr and qps have opposite orientations
CGAL_kernel_exactness_precondition( ! cl(p, q, r) );
CGAL_kernel_exactness_precondition( cp(p, q, r, s) );