mirror of https://github.com/CGAL/cgal
write error to cerr when the base of affine subspace is... not a base
This commit is contained in:
parent
613d7f78e6
commit
35c988118c
|
|
@ -384,10 +384,10 @@ struct Side_of_oriented_subsphereCd
|
|||
M = typename LA::Matrix(d+1);
|
||||
if( ! ori_.state().axes_found_ )
|
||||
{
|
||||
// the call to ori_(...) will compute a set of axes to complement our base.
|
||||
Orientation o = ori_(first, last);
|
||||
// FIXME: why these two lines below? I would remove them [sam]
|
||||
if( COPLANAR == o )
|
||||
return ON_ORIENTED_BOUNDARY;
|
||||
std::cerr << "\nAffine base is flat (it should have positive orientation) !!";
|
||||
CGAL_assertion( o == POSITIVE );
|
||||
// Now we can setup the fixed part of the matrix:
|
||||
int a(0);
|
||||
|
|
|
|||
Loading…
Reference in New Issue