Added CGAL:: prefix to do_intersect (MSVC does not understand Koenig Lookup)

This commit is contained in:
Geert-Jan Giezeman 2000-03-14 09:58:47 +00:00
parent 0c4cc63e79
commit 2b4e28af7e
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ void treat_intersection(const segment_t &seg1, const segment_t &seg2)
point_t pt1;
segment_t iseg;
bool is;
is = do_intersect(seg1,seg2);
is = CGAL::do_intersect(seg1,seg2);
CGAL::Object result = CGAL::intersection(seg1, seg2);
if (!CGAL::assign(iseg, result) && !CGAL::assign(pt1, result)) {
std::cout << "No intersection.\n";