#include <CGAL/box_intersection_d.h>
#include <CGAL/Bbox_2.h>
#include <iostream>
Box boxes[9] = { Bbox( 0,0,1,1), Bbox( 1,0,2,1), Bbox( 2,0,3,1),
Bbox( 0,1,1,2), Bbox( 1,1,2,2), Bbox( 2,1,3,2),
Bbox( 0,2,1,3), Bbox( 1,2,2,3), Bbox( 2,2,3,3)};
void callback( const Box& a, const Box& b ) {
std::cout << "box " << a.id() << " intersects box " << b.id() << std::endl;
}
int main() {
return 0;
}