diff --git a/Cartesian_kernel/include/CGAL/Cartesian/function_objects.h b/Cartesian_kernel/include/CGAL/Cartesian/function_objects.h index 943cc686804..a7bae3d6e2f 100644 --- a/Cartesian_kernel/include/CGAL/Cartesian/function_objects.h +++ b/Cartesian_kernel/include/CGAL/Cartesian/function_objects.h @@ -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(), diff --git a/Homogeneous_kernel/include/CGAL/Homogeneous/function_objects.h b/Homogeneous_kernel/include/CGAL/Homogeneous/function_objects.h index 97e7a68d225..2868dd8f7d2 100644 --- a/Homogeneous_kernel/include/CGAL/Homogeneous/function_objects.h +++ b/Homogeneous_kernel/include/CGAL/Homogeneous/function_objects.h @@ -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) );