This commit is contained in:
Andreas Fabri 2018-12-03 12:52:06 +01:00
parent aac8ac4e6b
commit e58de4baa1
2 changed files with 1 additions and 18 deletions

View File

@ -40,8 +40,6 @@ namespace CGAL {
return CGAL::do_overlap(c, bbox); return CGAL::do_overlap(c, bbox);
} }
void intersection(const CGAL::Bbox_3&,
const CGAL::Bbox_3&){}
} //namespace CGAL } //namespace CGAL
#endif // CGAL_INTERNAL_INTERSECTIONS_3_BBOX_3_BBOX_3_DO_INTERSECT_H #endif // CGAL_INTERNAL_INTERSECTIONS_3_BBOX_3_BBOX_3_DO_INTERSECT_H

View File

@ -1,18 +1,3 @@
#if 0
#include <CGAL/Cartesian.h>
#include <CGAL/Intersections_3/Segment_3_Segment_3.h>
typedef CGAL::Cartesian<double> K;
int main()
{
K::Segment_3 s1, s2;
std::cout << do_intersect(s1,s2) << std::endl;
return 0;
}
#else
// 3D intersection tests. // 3D intersection tests.
#include <CGAL/Object.h> #include <CGAL/Object.h>
@ -612,4 +597,4 @@ int main()
Test< CGAL::Homogeneous<CGAL::MP_Float> >().run(); Test< CGAL::Homogeneous<CGAL::MP_Float> >().run();
// TODO : test more kernels. // TODO : test more kernels.
} }
#endif