remove trailing whitespace

This commit is contained in:
Léo Valque 2025-02-28 14:03:19 +01:00
parent 91f29df106
commit dfc40bde23
2 changed files with 3 additions and 3 deletions

View File

@ -58,7 +58,7 @@ public:
std::set_intersection(a.begin(), a.end(), b.begin(), b.end(),std::back_inserter(v));
if(v.size()!=0) //they have common vertices
return;
return;
bool comp = K().compare_squared_distance_3_object()(T(points[a[0]], points[a[1]], points[a[2]]),
T(points[b[0]], points[b[1]], points[b[2]]),
@ -68,7 +68,7 @@ public:
nb_closed_pairs++;
}
};
for(Iterator it=triangles.begin(); it!=triangles.end(); ++it)
boxes.emplace_back(extend_bbox3(it, d2), it);

View File

@ -206,7 +206,7 @@ compare_squared_distance(const typename K::Segment_3& s1,
typename K::Compute_squared_distance_3 sq_dist = k.compute_squared_distance_3_object();
typename K::Compare_squared_distance_3 csq_dist = k.compare_squared_distance_3_object();
/* The content of this function is very similar with the one above, the difference is we can exit earlier if
/* The content of this function is very similar with the one above, the difference is we can exit earlier if
the supporting line are farther than d since we do not need the exact distance. */