mirror of https://github.com/CGAL/cgal
Fix erroneous description in Kernel_23::Coplanar_orienation_3
This commit is contained in:
parent
107eaba86d
commit
69d215a33e
|
|
@ -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(),
|
||||
|
|
|
|||
|
|
@ -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) );
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue