good naming of global functions
This commit is contained in:
@@ -173,7 +173,7 @@ namespace CGALi {
|
||||
typedef std::vector<CGAL::Object > solutions_container;
|
||||
|
||||
solutions_container solutions;
|
||||
CGAL::intersect_2<CK>( c, c1, std::back_inserter(solutions) );
|
||||
intersection( c, c1, std::back_inserter(solutions) );
|
||||
typename solutions_container::iterator it = solutions.begin();
|
||||
|
||||
CGAL_kernel_precondition( it != solutions.end() );
|
||||
|
||||
@@ -37,7 +37,7 @@ circle_intersect( const typename CK::Circle_2 & c1,
|
||||
typedef std::vector<CGAL::Object > solutions_container;
|
||||
solutions_container solutions;
|
||||
|
||||
CGAL::intersect_2<CK>( c1, c2, std::back_inserter(solutions) );
|
||||
intersection( c1, c2, std::back_inserter(solutions) );
|
||||
|
||||
typename solutions_container::iterator it = solutions.begin();
|
||||
|
||||
|
||||
+1
-1
@@ -725,7 +725,7 @@ namespace CircularFunctors {
|
||||
(a1,a2,solutions)) {
|
||||
#endif
|
||||
|
||||
CGAL::intersect_2<CK> ( a1.supporting_circle(), a2.supporting_circle(),
|
||||
intersection( a1.supporting_circle(), a2.supporting_circle(),
|
||||
std::back_inserter(solutions) );
|
||||
|
||||
#ifdef CGAL_INTERSECTION_MAP_FOR_SUPPORTING_CIRCLES
|
||||
|
||||
Reference in New Issue
Block a user