mirror of https://github.com/CGAL/cgal
untabify
This commit is contained in:
parent
20d1629e1b
commit
4e1ebec30a
|
|
@ -631,9 +631,9 @@ namespace CartesianKernelFunctors {
|
||||||
operator()(const Point_2& s1s, const Point_2& s1t, const Point_2& s2s, const Point_2& s2t) const
|
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(),
|
return compare_slopesC2(s1s.x(), s1s.y(),
|
||||||
s1t.x(), s1t.y(),
|
s1t.x(), s1t.y(),
|
||||||
s2s.x(), s2s.y(),
|
s2s.x(), s2s.y(),
|
||||||
s2t.x(), s2t.y());
|
s2t.x(), s2t.y());
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -845,7 +845,7 @@ namespace HomogeneousKernelFunctors {
|
||||||
operator()(const Segment_2& s1, const Segment_2& s2) const
|
operator()(const Segment_2& s1, const Segment_2& s2) const
|
||||||
{
|
{
|
||||||
return (*this)(s1.source(), s1.target(),
|
return (*this)(s1.source(), s1.target(),
|
||||||
s2.source(), s2.target());
|
s2.source(), s2.target());
|
||||||
}
|
}
|
||||||
|
|
||||||
result_type
|
result_type
|
||||||
|
|
|
||||||
|
|
@ -1048,7 +1048,7 @@ public:
|
||||||
*/
|
*/
|
||||||
Comparison_result operator()(const Kernel::Point_2& s1s,
|
Comparison_result operator()(const Kernel::Point_2& s1s,
|
||||||
const Kernel::Point_2& s1t,
|
const Kernel::Point_2& s1t,
|
||||||
const Kernel::Point_2& s2s,
|
const Kernel::Point_2& s2s,
|
||||||
const Kernel::Point_2& s2t));
|
const Kernel::Point_2& s2t));
|
||||||
|
|
||||||
/// @}
|
/// @}
|
||||||
|
|
@ -9713,7 +9713,6 @@ public:
|
||||||
const Kernel::Point_3&s,
|
const Kernel::Point_3&s,
|
||||||
const Kernel::Point_3&t);
|
const Kernel::Point_3&t);
|
||||||
|
|
||||||
|
|
||||||
/// @}
|
/// @}
|
||||||
|
|
||||||
}; /* end Kernel::SideOfOrientedSphere_3 */
|
}; /* end Kernel::SideOfOrientedSphere_3 */
|
||||||
|
|
|
||||||
|
|
@ -351,7 +351,7 @@ template < class K >
|
||||||
inline
|
inline
|
||||||
typename K::Comparison_result
|
typename K::Comparison_result
|
||||||
compare_slope(const Point_2<K> &s1s, const Point_2<K> &s1t,
|
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());
|
return internal::compare_slope(s1s, s1t, s2s, s2t, K());
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue