This commit is contained in:
Andreas Fabri 2021-05-01 17:04:52 +02:00
parent 20d1629e1b
commit 4e1ebec30a
4 changed files with 6 additions and 7 deletions

View File

@ -631,9 +631,9 @@ namespace CartesianKernelFunctors {
operator()(const Point_2& s1s, const Point_2& s1t, const Point_2& s2s, const Point_2& s2t) const
{
return compare_slopesC2(s1s.x(), s1s.y(),
s1t.x(), s1t.y(),
s2s.x(), s2s.y(),
s2t.x(), s2t.y());
s1t.x(), s1t.y(),
s2s.x(), s2s.y(),
s2t.x(), s2t.y());
}
};

View File

@ -845,7 +845,7 @@ namespace HomogeneousKernelFunctors {
operator()(const Segment_2& s1, const Segment_2& s2) const
{
return (*this)(s1.source(), s1.target(),
s2.source(), s2.target());
s2.source(), s2.target());
}
result_type

View File

@ -1048,7 +1048,7 @@ public:
*/
Comparison_result operator()(const Kernel::Point_2& s1s,
const Kernel::Point_2& s1t,
const Kernel::Point_2& s2s,
const Kernel::Point_2& s2s,
const Kernel::Point_2& s2t));
/// @}
@ -9713,7 +9713,6 @@ public:
const Kernel::Point_3&s,
const Kernel::Point_3&t);
/// @}
}; /* end Kernel::SideOfOrientedSphere_3 */

View File

@ -351,7 +351,7 @@ template < class K >
inline
typename K::Comparison_result
compare_slope(const Point_2<K> &s1s, const Point_2<K> &s1t,
const Point_2<K> &s2s, const Point_2<K> &s2t)
const Point_2<K> &s2s, const Point_2<K> &s2t)
{
return internal::compare_slope(s1s, s1t, s2s, s2t, K());
}