mirror of https://github.com/CGAL/cgal
rename and undef macro
This commit is contained in:
parent
b6505b6e91
commit
174b1c3c7d
|
|
@ -49,7 +49,7 @@
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <limits>
|
#include <limits>
|
||||||
|
|
||||||
#define EPS 1e-15
|
#define CGAL_EPS 1e-15
|
||||||
|
|
||||||
namespace CGAL {
|
namespace CGAL {
|
||||||
namespace OTR_2 {
|
namespace OTR_2 {
|
||||||
|
|
@ -1034,7 +1034,7 @@ public:
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((std::max)(Dac, Dbd) + EPS < Dbc)
|
if ((std::max)(Dac, Dbd) + CGAL_EPS < Dbc)
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
std::cerr.precision(10);
|
std::cerr.precision(10);
|
||||||
|
|
@ -1079,4 +1079,6 @@ public:
|
||||||
|
|
||||||
} } //namespace CGAL
|
} } //namespace CGAL
|
||||||
|
|
||||||
|
#undef CGAL_EPS
|
||||||
|
|
||||||
#endif // CGAL_RECONSTRUCTION_TRIANGULATION_2_H
|
#endif // CGAL_RECONSTRUCTION_TRIANGULATION_2_H
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue