mirror of https://github.com/CGAL/cgal
fixes for min/max
This commit is contained in:
parent
deedd890f5
commit
b2fbc3a336
|
|
@ -35,9 +35,9 @@ void one_pair(rect_t const & irect1, rect_t const & irect2)
|
|||
CGAL::Object result = CGAL::intersection(irect1, irect2);
|
||||
if (CGAL::assign(irect, result)) {
|
||||
std::cout << "Intersection.\n";
|
||||
print(irect.min());
|
||||
print((irect.min)());
|
||||
std::cout << ' ';
|
||||
print(irect.max());
|
||||
print((irect.max)());
|
||||
std::cout << '\n';
|
||||
}
|
||||
if (!CGAL::assign(irect, result)) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue